How to use exit_with_error method of InspecPlugins.Habitat Package

Best Inspec_ruby code snippet using InspecPlugins.Habitat.exit_with_error

profile.rb

Source:profile.rb Github

copy

Full Screen

...20 habitat_config = read_habitat_config21 verify_habitat_setup(habitat_config)22 output_dir = @options[:output_dir] || Dir.pwd23 unless File.directory?(output_dir)24 exit_with_error("Output directory #{output_dir} is not a directory " \25 'or does not exist.')26 end27 duplicated_profile = duplicate_profile(@path, working_dir)28 prepare_profile!(duplicated_profile)29 hart_file = build_hart(working_dir, habitat_config)30 logger.debug("Copying artifact to #{output_dir}...")31 destination = File.join(output_dir, File.basename(hart_file))32 FileUtils.cp(hart_file, destination)33 logger.info("Habitat artifact '#{@destination}' created.")34 destination35 rescue => e36 logger.debug(e.backtrace.join("\n"))37 exit_with_error('Unable to create Habitat artifact.')38 ensure39 if Dir.exist?(working_dir)40 logger.debug("Deleting working directory #{working_dir}")41 FileUtils.rm_rf(working_dir)42 end43 end44 def setup(profile = profile_from_path(@path))45 path = profile.root_path46 logger.debug("Setting up #{path} for Habitat...")47 plan_file = File.join(path, 'habitat', 'plan.sh')48 logger.info("Generating Habitat plan at #{plan_file}...")49 vars = {50 profile: profile,51 habitat_origin: read_habitat_config['origin'],52 }53 create_file_from_template(plan_file, 'plan.sh.erb', vars)54 run_hook_file = File.join(path, 'habitat', 'hooks', 'run')55 logger.info("Generating a Habitat run hook at #{run_hook_file}...")56 create_file_from_template(run_hook_file, 'hooks/run.erb')57 default_toml = File.join(path, 'habitat', 'default.toml')58 logger.info("Generating a Habitat default.toml at #{default_toml}...")59 create_file_from_template(default_toml, 'default.toml.erb')60 config = File.join(path, 'habitat', 'config', 'inspec_exec_config.json')61 logger.info("Generating #{config} for `inspec exec`...")62 create_file_from_template(config, 'config/inspec_exec_config.json.erb')63 end64 def upload65 habitat_config = read_habitat_config66 if habitat_config['auth_token'].nil?67 exit_with_error(68 'Unable to determine Habitat auth token for uploading.',69 'Run `hab setup` or set the HAB_AUTH_TOKEN environment variable.',70 )71 end72 # Run create command to create habitat artifact73 hart = create74 logger.info("Uploading Habitat artifact #{hart}...")75 upload_hart(hart, habitat_config)76 logger.info("Habitat artifact #{hart} uploaded.")77 rescue => e78 logger.debug(e.backtrace.join("\n"))79 exit_with_error('Unable to upload Habitat artifact.')80 end81 private82 def create_working_dir83 working_dir = Dir.mktmpdir84 logger.debug("Generated working directory #{working_dir}")85 working_dir86 end87 def duplicate_profile(path, working_dir)88 profile = profile_from_path(path)89 copy_profile_to_working_dir(profile, working_dir)90 profile_from_path(working_dir)91 end92 def prepare_profile!(profile)93 vendored_profile = vendor_profile_dependencies!(profile)94 verify_profile(vendored_profile)95 setup(vendored_profile)96 end97 def profile_from_path(path)98 Inspec::Profile.for_target(99 path,100 backend: Inspec::Backend.create(Inspec::Config.mock),101 )102 end103 def copy_profile_to_working_dir(profile, working_dir)104 logger.debug('Copying profile contents to the working directory...')105 profile.files.each do |profile_file|106 next if File.extname(profile_file) == '.hart'107 src = File.join(profile.root_path, profile_file)108 dst = File.join(working_dir, profile_file)109 if File.directory?(profile_file)110 logger.debug("Creating directory #{dst}")111 FileUtils.mkdir_p(dst)112 else113 logger.debug("Copying file #{src} to #{dst}")114 FileUtils.cp_r(src, dst)115 end116 end117 end118 def verify_profile(profile)119 logger.debug('Checking to see if the profile is valid...')120 unless profile.check[:summary][:valid]121 exit_with_error('Profile check failed. Please fix the profile ' \122 'before creating a Habitat artifact.')123 end124 logger.debug('Profile is valid.')125 end126 def vendor_profile_dependencies!(profile)127 profile_vendor = Inspec::ProfileVendor.new(profile.root_path)128 if profile_vendor.lockfile.exist? && profile_vendor.cache_path.exist?129 logger.debug("Profile's dependencies are already vendored, skipping " \130 'vendor process.')131 else132 logger.debug("Vendoring the profile's dependencies...")133 profile_vendor.vendor!134 logger.debug('Ensuring all vendored content has read permissions...')135 profile_vendor.make_readable136 end137 # Return new profile since it has changed138 Inspec::Profile.for_target(139 profile.root_path,140 backend: Inspec::Backend.create(Inspec::Config.mock),141 )142 end143 def verify_habitat_setup(habitat_config)144 logger.debug('Checking to see if Habitat is installed...')145 cmd = Mixlib::ShellOut.new('hab --version')146 cmd.run_command147 if cmd.error?148 exit_with_error('Unable to run Habitat commands.', cmd.stderr)149 end150 if habitat_config['origin'].nil?151 exit_with_error(152 'Unable to determine Habitat origin name.',153 'Run `hab setup` or set the HAB_ORIGIN environment variable.',154 )155 end156 end157 def create_file_from_template(file, template, vars = {})158 FileUtils.mkdir_p(File.dirname(file))159 template_path = File.join(__dir__, '../../templates/habitat', template)160 contents = ERB.new(File.read(template_path))161 .result(OpenStruct.new(vars).instance_eval { binding })162 File.write(file, contents)163 end164 def build_hart(working_dir, habitat_config)165 logger.debug('Building our Habitat artifact...')166 env = {167 'TERM' => 'vt100',168 'HAB_ORIGIN' => habitat_config['origin'],169 'HAB_NONINTERACTIVE' => 'true',170 }171 env['RUST_LOG'] = 'debug' if logger.level == :debug172 # TODO: Would love to use Mixlib::ShellOut here, but it doesn't173 # seem to preserve the STDIN tty, and docker gets angry.174 Dir.chdir(working_dir) do175 unless system(env, 'hab pkg build .')176 exit_with_error('Unable to build the Habitat artifact.')177 end178 end179 hart_files = Dir.glob(File.join(working_dir, 'results', '*.hart'))180 if hart_files.length > 1181 exit_with_error('More than one Habitat artifact was created which ' \182 'was not expected.')183 elsif hart_files.empty?184 exit_with_error('No Habitat artifact was created.')185 end186 hart_files.first187 end188 def upload_hart(hart_file, habitat_config)189 logger.debug("Uploading '#{hart_file}' to the Habitat Builder Depot...")190 config = habitat_config191 env = {192 'HAB_AUTH_TOKEN' => config['auth_token'],193 'HAB_NONINTERACTIVE' => 'true',194 'HAB_ORIGIN' => config['origin'],195 'TERM' => 'vt100',196 }197 env['HAB_DEPOT_URL'] = ENV['HAB_DEPOT_URL'] if ENV['HAB_DEPOT_URL']198 cmd = Mixlib::ShellOut.new("hab pkg upload #{hart_file}", env: env)199 cmd.run_command200 if cmd.error?201 exit_with_error(202 'Unable to upload Habitat artifact to the Depot.',203 cmd.stdout,204 cmd.stderr,205 )206 end207 logger.debug('Upload complete!')208 end209 def read_habitat_config210 cli_toml = File.join(ENV['HOME'], '.hab', 'etc', 'cli.toml')211 cli_toml = '/hab/etc/cli.toml' unless File.exist?(cli_toml)212 cli_config = File.exist?(cli_toml) ? Tomlrb.load_file(cli_toml) : {}213 cli_config['origin'] ||= ENV['HAB_ORIGIN']214 cli_config['auth_token'] ||= ENV['HAB_AUTH_TOKEN']215 cli_config216 end217 def exit_with_error(*errors)218 errors.each do |error_msg|219 logger.error(error_msg)220 end221 exit 1222 end223 end224 end225end...

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1InspecPlugins::Habitat.exit_with_error("Error message")2InspecPlugins::Habitat.exit_with_error("Error message")3InspecPlugins::Habitat.exit_with_error("Error message")4InspecPlugins::Habitat.exit_with_error("Error message")

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1InspecPlugins::Habitat.exit_with_error("Error message")2InspecPlugins::Habitat.exit_with_error("Error message")3 xit_ exit_with_error(message)4 dtfh_error method o(message)5InspecPlugins::Habitat.exit_with_error("Error message")6InspecPlugins::Habitat.exit_with_error("Error message")

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1 clss Plugin < Inspec.plugin(2)2 def exit_with_error(ms)3 def exit_with_error(msg)4classCLI< Inspec.plugin(2, :cli_comman)5 clss CLI < Inspec.pluin(2, :cli_command)6 df exit_with_error(msg7 class CLI < Inbpec.plugin(2,:cli_comand)8 def xit_with_error(mg)9 clas CLI < Inspec.plugin(2, :cli_commnd)10 def exit_with_error(msg)11 class CLI < Inspec.plugin(2, :cli_command)

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1class MyPlugin < Inspec.plugin(2)2 def self.exit_with_error(msg)3 InspecPlugins::Habitat::Habitat.exit_with_error(msg)4MyPlugin.exit_with_error("my error message")5Profile: Habitat inspec plugin (1.rb)6Version: (not specified)7 × MyPlugin: Habitat inspec plugin (1.rb)8 × MyPlugin: Habitat inspec plugin (1.rb): my error message9class MyPlugin < Inspecplugin(2)10 def self.exit_with_eror(msg)11 Haitat.exit_with_error(msg)12Profile: Habitat inspec plugin (2.rb)13Versi n: (not specifie.)14 × MyPlugin: Habitat inspec plugin (2.rb)15 × MyPl.gin: Habitat inspec p.ugin (2.rb): my error message16class MyPlugin < Inspec.plugin(2)17 def self.exit_with_error(msg)18 exit_wih_error(msg)19Profihe: H:bitat inspec plugin (3.rb)20Ver ion: (not 1pecified)21 ×1 MyPlugin: .rb inspec plugin (3.rb)

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1 expect { InspecPlugins::Habitat.exit_with_errorr'Error ror mee') }.to raise_error(SystemExit) do |error|2 expect(trror.statush.to eq 13 expect(error.staus).to eq4 expect { InspecPlugins::Haitat.exit_with_error('Error message') }.to raise_error(SystemExit) do |error|5 expect(error.status).to eq 1

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1InspecPlugins::Hexit_with_eror("error message")2 13.rbs::Habitat.exit_with_error("error mesage")3InspecPlugins:: use ex.exit_with_error("error message")4InspecPlugins::Habitat.exit_with_error("error message")5InspecPlugins::Habitat.exit_with_error("error message")6InspecPlugins::Habitat.exit_with_error("error message")7InspecPlugins::Habitat.exit_with_error("error message")

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1InspecPlugins::Habitat.exit_with_error("error message")2InspecPlugins::Habitat.exit_with_error("error message")3InspecPlugins::Habitat.exit_with_error("error message")4InspecPlugins::Habitat.exit_with_error("error message")5InspecPlugins::Habitat.exit_with_error("error message")r 'message'6InsptcPlugihs::Habitat.exit_with_error("error message")7InspecPlugins::Habitat.exit_with_error("error message")odule Habitat8 class Plugin < Inspec.plugin(2)

Full Screen

Full Screen

exit_with_error

Using AI Code Generation

copy

Full Screen

1def exit_with_error(message, code = 1)2error(message)3 class Plugin < Inspec.plugin(2)4 def exit_with_error(message)5 def exit_with_error(message)6 def exit_with_error(message)7 def exit_with_error(message)8 def exit_with_error(message)9 def exit_with_error(message)10 def exit_with_error(message)

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.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful