How to use get_token method of InspecPlugins.Compliance Package

Best Inspec_ruby code snippet using InspecPlugins.Compliance.get_token

api.rb

Source:api.rb Github

copy

Full Screen

...124 end125 [res.is_a?(Net::HTTPSuccess), res.body]126 end127 # Use username and refresh_token to get an API access token128 def self.get_token_via_refresh_token(url, refresh_token, insecure)129 uri = URI.parse("#{url}/login")130 req = Net::HTTP::Post.new(uri.path)131 req.body = { token: refresh_token }.to_json132 access_token = nil133 response = InspecPlugins::Compliance::HTTP.send_request(uri, req, insecure)134 data = response.body135 if response.code == '200'136 begin137 tokendata = JSON.parse(data)138 access_token = tokendata['access_token']139 msg = 'Successfully fetched API access token'140 success = true141 rescue JSON::ParserError => e142 success = false143 msg = e.message144 end145 else146 success = false147 msg = "Failed to authenticate to #{url} \n\148 Response code: #{response.code}\n Body: #{response.body}"149 end150 [success, msg, access_token]151 end152 # Use username and password to get an API access token153 def self.get_token_via_password(url, username, password, insecure)154 uri = URI.parse("#{url}/login")155 req = Net::HTTP::Post.new(uri.path)156 req.body = { userid: username, password: password }.to_json157 access_token = nil158 response = InspecPlugins::Compliance::HTTP.send_request(uri, req, insecure)159 data = response.body160 if response.code == '200'161 access_token = data162 msg = 'Successfully fetched an API access token valid for 12 hours'163 success = true164 else165 success = false166 msg = "Failed to authenticate to #{url} \n\167 Response code: #{response.code}\n Body: #{response.body}"168 end169 [success, msg, access_token]170 end171 def self.get_headers(config)172 token = get_token(config)173 if is_automate_server?(config) || is_automate2_server?(config)174 headers = { 'chef-delivery-enterprise' => config['automate']['ent'] }175 if config['automate']['token_type'] == 'dctoken'176 headers['x-data-collector-token'] = token177 else178 headers['chef-delivery-user'] = config['user']179 headers['chef-delivery-token'] = token180 end181 else182 headers = { 'Authorization' => "Bearer #{token}" }183 end184 headers185 end186 def self.get_token(config)187 return config['token'] unless config['refresh_token']188 _success, _msg, token = get_token_via_refresh_token(config['server'], config['refresh_token'], config['insecure'])189 token190 end191 def self.target_url(config, profile)192 owner, id, ver = profile_split(profile)193 return "#{config['server']}/compliance/profiles/tar" if is_automate2_server?(config)194 return "#{config['server']}/owners/#{owner}/compliance/#{id}/tar" unless is_automate_server?(config)195 if ver.nil?196 "#{config['server']}/profiles/#{owner}/#{id}/tar"197 else198 "#{config['server']}/profiles/#{owner}/#{id}/version/#{ver}/tar"199 end200 end201 def self.profile_split(profile)202 owner, id = profile.split('/')...

Full Screen

Full Screen

target.rb

Source:target.rb Github

copy

Full Screen

...77 profile_checksum = profile_info.key?('sha256') ? profile_info['sha256'] : ''78 end79 end80 # We need to pass the token to the fetcher81 config['token'] = InspecPlugins::Compliance::API.get_token(config)82 # Needed for automate2 post request83 profile_stub = profile || target[:compliance]84 config['profile'] = InspecPlugins::Compliance::API.profile_split(profile_stub)85 new({ url: profile_fetch_url, sha256: profile_checksum }, config)86 rescue URI::Error => _e87 nil88 end89 # We want to save compliance: in the lockfile rather than url: to90 # make sure we go back through the Compliance API handling.91 def resolved_source92 @resolved_source ||= {93 compliance: compliance_profile_name,94 url: @target,95 sha256: sha256,...

Full Screen

Full Screen

get_token

Using AI Code Generation

copy

Full Screen

1report = JSON.parse(2 InspecPlugins::Compliance::ComplianceCLI.new.run_command(3 'report', 'owner/profile', 'latest', { 'token' => token }

Full Screen

Full Screen

get_token

Using AI Code Generation

copy

Full Screen

1describe compliance_profile(token: token) do2 it { should exist }3Profile: InSpec Profile (2.rb)4 × Compliance Profile: (1 failed)5 (compared using exist? matcher)6compliance_upload(token: token)

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