Retab all the things (except external/)

This commit is contained in:
Tab Assassin
2013-09-30 13:47:53 -05:00
parent 0ecba377f5
commit 2e8d19edcf
293 changed files with 32962 additions and 32962 deletions
@@ -1,99 +1,99 @@
shared_examples_for 'Msf::Simple::Framework::ModulePaths' do
it { should be_a Msf::Simple::Framework::ModulePaths }
it { should be_a Msf::Simple::Framework::ModulePaths }
context '#init_module_paths' do
def init_module_paths
framework.init_module_paths
end
context '#init_module_paths' do
def init_module_paths
framework.init_module_paths
end
let(:module_directory) do
nil
end
let(:module_directory) do
nil
end
let(:user_module_directory) do
nil
end
let(:user_module_directory) do
nil
end
let(:options) do
{}
end
let(:options) do
{}
end
before(:each) do
# create the framework first so that it's initialization's call
# to init_module_paths doesn't get captured.
framework
before(:each) do
# create the framework first so that it's initialization's call
# to init_module_paths doesn't get captured.
framework
Msf::Config.stub(:module_directory => module_directory)
Msf::Config.stub(:user_module_directory => user_module_directory)
end
Msf::Config.stub(:module_directory => module_directory)
Msf::Config.stub(:user_module_directory => user_module_directory)
end
it 'should refresh module cache from database' do
framework.modules.should_receive(:refresh_cache_from_database)
it 'should refresh module cache from database' do
framework.modules.should_receive(:refresh_cache_from_database)
init_module_paths
end
init_module_paths
end
context 'Msf::Config' do
context 'module_directory' do
context 'without nil' do
let(:module_directory) do
'modules'
end
context 'Msf::Config' do
context 'module_directory' do
context 'without nil' do
let(:module_directory) do
'modules'
end
it 'should add Msf::Config.module_directory to module paths' do
framework.modules.should_receive(:add_module_path).with(
module_directory,
options
)
it 'should add Msf::Config.module_directory to module paths' do
framework.modules.should_receive(:add_module_path).with(
module_directory,
options
)
init_module_paths
end
end
end
init_module_paths
end
end
end
context 'user_module_directory' do
context 'without nil' do
let(:user_module_directory) do
'user/modules'
end
context 'user_module_directory' do
context 'without nil' do
let(:user_module_directory) do
'user/modules'
end
it 'should add Msf::Config.user_module_directory to module paths' do
framework.modules.should_receive(:add_module_path).with(
user_module_directory,
options
)
it 'should add Msf::Config.user_module_directory to module paths' do
framework.modules.should_receive(:add_module_path).with(
user_module_directory,
options
)
init_module_paths
end
end
end
end
init_module_paths
end
end
end
end
context 'datastore' do
context 'MsfModulePaths' do
let(:module_paths) do
module_paths = []
context 'datastore' do
context 'MsfModulePaths' do
let(:module_paths) do
module_paths = []
1.upto(2) do |i|
module_paths << "msf/#{i}/modules"
end
1.upto(2) do |i|
module_paths << "msf/#{i}/modules"
end
module_paths
end
module_paths
end
before(:each) do
msf_module_paths = module_paths.join(';')
framework.datastore['MsfModulePaths'] = msf_module_paths
end
before(:each) do
msf_module_paths = module_paths.join(';')
framework.datastore['MsfModulePaths'] = msf_module_paths
end
it 'should add each module path' do
module_paths.each do |module_path|
framework.modules.should_receive(:add_module_path).with(module_path, options)
end
it 'should add each module path' do
module_paths.each do |module_path|
framework.modules.should_receive(:add_module_path).with(module_path, options)
end
init_module_paths
end
end
end
end
init_module_paths
end
end
end
end
end