How to use reset_globals method of InstallerTestHelpers Package

Best Inspec_ruby code snippet using InstallerTestHelpers.reset_globals

installer_test.rb

Source:installer_test.rb Github

copy

Full Screen

...8require_relative '../../../../lib/inspec/plugin/v2'9require_relative '../../../../lib/inspec/plugin/v2/installer'10require 'byebug'11module InstallerTestHelpers12 def reset_globals13 ENV['HOME'] = @orig_home14 ENV['INSPEC_CONFIG_DIR'] = nil15 @installer.__reset16 end17 def copy_in_config_dir(fixture_name)18 src = Dir.glob(File.join(@config_dir_path, fixture_name, '*'))19 dest = File.join(@config_dir_path, 'empty')20 src.each { |path| FileUtils.cp_r(path, dest) }21 end22 def setup23 @orig_home = Dir.home24 repo_path = File.expand_path(File.join( __FILE__, '..', '..', '..', '..', '..'))25 mock_path = File.join(repo_path, 'test', 'unit', 'mock')26 @config_dir_path = File.join(mock_path, 'config_dirs')27 @plugin_fixture_src_path = File.join(mock_path, 'plugins', 'inspec-test-fixture')28 @plugin_fixture_pkg_path = File.join(@plugin_fixture_src_path, 'pkg')29 # This is unstable under CI; see https://github.com/inspec/inspec/issues/335530 # @ruby_abi_version = (RUBY_VERSION.split('.')[0,2] << '0').join('.')31 @ruby_abi_version = (Gem.ruby_version.segments[0, 2] << 0).join('.')32 @installer = Inspec::Plugin::V2::Installer.instance33 reset_globals34 WebMock.disable_net_connect!(allow: %r{(api\.)?rubygems\.org/.*})35 end36 def teardown37 reset_globals38 # We use the 'empty' config dir for exercising a lot of installs.39 # Purge it after every test.40 unless ENV['INSPEC_TEST_PRESERVE_PLUGIN']41 Dir.glob(File.join(@config_dir_path, 'empty', '*')).each do |path|42 next if path.end_with? '.gitkeep'43 FileUtils.rm_rf(path)44 end45 end46 # Clean up any activated gems47 Gem.loaded_specs.delete('inspec-test-fixture')48 end49end50#-----------------------------------------------------------------------#51# basics...

Full Screen

Full Screen

reset_globals

Using AI Code Generation

copy

Full Screen

1 assert_equal('C:\Program Files\Installer', $installer_path)2 assert_equal('C:\Program Files\Installer', $installer_path)3 assert_equal('C:\Program Files\Installer', $installer_path)4 assert_equal('C:\Program Files\Installer', $installer_path)5 assert_equal('C:\

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Inspec_ruby automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful