FIX: command_spec test

This commit is contained in:
Jake Webster
2026-01-22 17:33:28 +10:00
parent f923285da2
commit 32af09b248

View File

@@ -1,13 +1,23 @@
RSpec.describe 'BeEF Command class testing' do
it 'should return a beef configuration variable' do
expect {
BeEF::Modules.load if BeEF::Core::Configuration.instance.get('beef.module').nil?
}.to_not raise_error
command_mock = BeEF::Core::Command.new('test_get_variable')
expect(command_mock.config.beef_host).to eq('0.0.0.0')
let(:config) { BeEF::Core::Configuration.instance }
require 'modules/browser/hooked_origin/get_page_links/module'
gpl = Get_page_links.new('test_get_variable')
expect(gpl.config.beef_host).to eq('0.0.0.0')
before do
# Ensure modules are loaded
BeEF::Modules.load if config.get('beef.module').nil?
# Set up a test module configuration if it doesn't exist
unless config.get('beef.module.test_get_variable')
config.set('beef.module.test_get_variable.name', 'Test Get Variable')
config.set('beef.module.test_get_variable.path', 'modules/test/')
config.set('beef.module.test_get_variable.mount', '/command/test_get_variable.js')
config.set('beef.module.test_get_variable.db.id', 1)
end
end
it 'should return a beef configuration variable' do
expect do
command_mock = BeEF::Core::Command.new('test_get_variable')
expect(command_mock.config.beef_host).to eq('0.0.0.0')
end.to_not raise_error
end
end