Files
metasploit-gs/spec/support/shared/examples/msf/module_manager/loading.rb
T

163 lines
4.5 KiB
Ruby
Raw Normal View History

2015-12-31 16:56:13 -06:00
RSpec.shared_examples_for 'Msf::ModuleManager::Loading' do
2013-09-30 13:47:53 -05:00
context '#file_changed?' do
let(:module_basename) do
[basename_prefix, '.rb']
end
it 'should return true if module info is not cached' do
Tempfile.open(module_basename) do |tempfile|
module_path = tempfile.path
2015-10-20 14:37:18 -05:00
expect(subject.send(:module_info_by_path)[module_path]).to be_nil
expect(subject.file_changed?(module_path)).to be_truthy
2013-09-30 13:47:53 -05:00
end
end
it 'should return true if the cached type is Msf::MODULE_PAYLOAD' do
Tempfile.open(module_basename) do |tempfile|
module_path = tempfile.path
modification_time = File.mtime(module_path)
subject.send(:module_info_by_path)[module_path] = {
# :modification_time must match so that it is the :type that is causing the `true` and not the
# :modification_time causing the `true`.
:modification_time => modification_time,
:type => Msf::MODULE_PAYLOAD
}
2015-10-20 14:37:18 -05:00
expect(subject.file_changed?(module_path)).to be_truthy
2013-09-30 13:47:53 -05:00
end
end
context 'with cache module info and not a payload module' do
it 'should return true if the file does not exist on the file system' do
tempfile = Tempfile.new(module_basename)
module_path = tempfile.path
modification_time = File.mtime(module_path).to_i
subject.send(:module_info_by_path)[module_path] = {
:modification_time => modification_time
}
tempfile.unlink
2015-10-20 14:37:18 -05:00
expect(File.exist?(module_path)).to be_falsey
expect(subject.file_changed?(module_path)).to be_truthy
2013-09-30 13:47:53 -05:00
end
it 'should return true if modification time does not match the cached modification time' do
Tempfile.open(module_basename) do |tempfile|
module_path = tempfile.path
modification_time = File.mtime(module_path).to_i
cached_modification_time = (modification_time * rand).to_i
subject.send(:module_info_by_path)[module_path] = {
:modification_time => cached_modification_time
}
2015-10-20 10:29:23 -05:00
expect(cached_modification_time).not_to eq modification_time
2015-10-20 14:37:18 -05:00
expect(subject.file_changed?(module_path)).to be_truthy
2013-09-30 13:47:53 -05:00
end
end
it 'should return false if modification time does match the cached modification time' do
Tempfile.open(module_basename) do |tempfile|
module_path = tempfile.path
modification_time = File.mtime(module_path).to_i
cached_modification_time = modification_time
subject.send(:module_info_by_path)[module_path] = {
:modification_time => cached_modification_time
}
2015-10-20 11:30:38 -05:00
expect(cached_modification_time).to eq modification_time
2015-10-20 14:37:18 -05:00
expect(subject.file_changed?(module_path)).to be_falsey
2013-09-30 13:47:53 -05:00
end
end
end
end
context '#on_module_load' do
def on_module_load
module_manager.on_module_load(klass, type, reference_name, options)
end
let(:klass) do
Class.new(Msf::Auxiliary)
end
let(:module_set) do
module_manager.module_set(type)
end
let(:namespace_module) do
double('Namespace Module', :parent_path => parent_path)
end
let(:options) do
{
'files' => [
path
],
'paths' => [
reference_name
],
'type' => type
}
end
let(:parent_path) do
Metasploit::Framework.root.join('modules')
end
let(:path) do
type_directory = Mdm::Module::Detail::DIRECTORY_BY_TYPE[type]
File.join(parent_path, type_directory, "#{reference_name}.rb")
end
let(:reference_name) do
'admin/2wire/xslt_password_reset'
end
let(:type) do
klass.type
end
2015-12-31 16:56:13 -06:00
before(:example) do
allow(klass).to receive(:parent).and_return(namespace_module)
2013-09-30 13:47:53 -05:00
end
it "should add module to type's module_set" do
2015-10-20 12:40:33 -05:00
expect(module_set).to receive(:add_module).with(
2013-09-30 13:47:53 -05:00
klass,
reference_name,
options
)
on_module_load
end
it 'should call cache_in_memory' do
2015-10-20 12:40:33 -05:00
expect(module_manager).to receive(:cache_in_memory)
2013-09-30 13:47:53 -05:00
on_module_load
end
it 'should pass class to #auto_subscribe_module' do
2015-10-20 12:40:33 -05:00
expect(module_manager).to receive(:auto_subscribe_module).with(klass)
2013-09-30 13:47:53 -05:00
on_module_load
end
it 'should fire on_module_load event with class' do
2015-10-20 12:40:33 -05:00
expect(framework.events).to receive(:on_module_load).with(
2013-09-30 13:47:53 -05:00
reference_name,
klass
)
on_module_load
end
end
2014-08-26 15:24:08 -05:00
end