Class: Inspec::Profile
- Inherits:
-
Object
- Object
- Inspec::Profile
- Extended by:
- Forwardable
- Defined in:
- lib/inspec/profile.rb
Overview
rubocop:disable Metrics/ClassLength
Instance Attribute Summary collapse
-
#backend ⇒ Object
readonly
Returns the value of attribute backend.
-
#runner_context ⇒ Object
readonly
Returns the value of attribute runner_context.
-
#source_reader ⇒ Object
readonly
Returns the value of attribute source_reader.
Class Method Summary collapse
- .for_path(path, opts) ⇒ Object
- .for_target(target, opts = {}) ⇒ Object
- .resolve_target(target, cache = nil) ⇒ Object
Instance Method Summary collapse
-
#archive(opts) ⇒ Object
generates a archive of a folder profile assumes that the profile was checked before.
-
#check ⇒ Boolean
Check if the profile is internall well-structured.
- #collect_tests(include_list = @controls) ⇒ Object
- #controls_count ⇒ Object
-
#cwd ⇒ Object
TODO(ssd): Relative path handling really needs to be carefully thought through, especially with respect to relative paths in tarballs.
- #filter_controls(controls_array, include_list) ⇒ Object
-
#generate_lockfile(vendor_path = nil) ⇒ Inspec::Lockfile
Generate an in-memory lockfile.
- #info ⇒ Object
-
#initialize(source_reader, options = {}) ⇒ Profile
constructor
rubocop:disable Metrics/AbcSize.
- #load_dependencies ⇒ Object
- #load_libraries ⇒ Object
- #locked_dependencies ⇒ Object
- #lockfile ⇒ Object
- #lockfile_exists? ⇒ Boolean
- #lockfile_path ⇒ Object
- #name ⇒ Object
- #params ⇒ Object
-
#supported? ⇒ Boolean
Is this profile is supported on the current platform of the backend machine and the current inspec version.
- #supports_os? ⇒ Boolean
- #supports_runtime? ⇒ Boolean
- #to_s ⇒ Object
- #version ⇒ Object
Constructor Details
#initialize(source_reader, options = {}) ⇒ Profile
rubocop:disable Metrics/AbcSize
60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/inspec/profile.rb', line 60 def initialize(source_reader, = {}) @target = .delete(:target) @logger = [:logger] || Logger.new(nil) @locked_dependencies = [:dependencies] @controls = [:controls] || [] @profile_id = [:id] @backend = [:backend] || Inspec::Backend.create() @source_reader = source_reader @tests_collected = false Metadata.finalize(@source_reader., @profile_id) @runner_context = [:profile_context] || Inspec::ProfileContext.for_profile(self, @backend, [:attributes]) end |
Instance Attribute Details
#backend ⇒ Object (readonly)
Returns the value of attribute backend.
54 55 56 |
# File 'lib/inspec/profile.rb', line 54 def backend @backend end |
#runner_context ⇒ Object (readonly)
Returns the value of attribute runner_context.
54 55 56 |
# File 'lib/inspec/profile.rb', line 54 def runner_context @runner_context end |
#source_reader ⇒ Object (readonly)
Returns the value of attribute source_reader.
54 55 56 |
# File 'lib/inspec/profile.rb', line 54 def source_reader @source_reader end |
Class Method Details
.for_path(path, opts) ⇒ Object
40 41 42 43 44 45 46 47 48 |
# File 'lib/inspec/profile.rb', line 40 def self.for_path(path, opts) file_provider = FileProvider.for_path(path) reader = Inspec::SourceReader.resolve(file_provider.relative_provider) if reader.nil? fail("Don't understand inspec profile in #{path}, it " \ "doesn't look like a supported profile structure.") end new(reader, opts) end |
.for_target(target, opts = {}) ⇒ Object
50 51 52 |
# File 'lib/inspec/profile.rb', line 50 def self.for_target(target, opts = {}) for_path(resolve_target(target, opts[:cache]), opts.merge(target: target)) end |
.resolve_target(target, cache = nil) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/inspec/profile.rb', line 24 def self.resolve_target(target, cache = nil) cache ||= VendorIndex.new fetcher = Inspec::Fetcher.resolve(target) if fetcher.nil? fail("Could not fetch inspec profile in #{target.inspect}.") end if cache.exists?(fetcher.cache_key) Inspec::Log.debug "Using cached dependency for #{target}" cache.prefered_entry_for(fetcher.cache_key) else fetcher.fetch(cache.base_path_for(fetcher.cache_key)) fetcher.archive_path end end |
Instance Method Details
#archive(opts) ⇒ Object
generates a archive of a folder profile assumes that the profile was checked before
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/inspec/profile.rb', line 259 def archive(opts) # check if file exists otherwise overwrite the archive dst = archive_name(opts) if dst.exist? && !opts[:overwrite] @logger.info "Archive #{dst} exists already. Use --overwrite." return false end # remove existing archive File.delete(dst) if dst.exist? @logger.info "Generate archive #{dst}." # filter files that should not be part of the profile # TODO ignore all .files, but add the files to debug output # display all files that will be part of the archive @logger.debug 'Add the following files to archive:' root_path = @source_reader.target.prefix files = @source_reader.target.files files.each { |f| @logger.debug ' ' + f } if opts[:zip] # generate zip archive require 'inspec/archive/zip' zag = Inspec::Archive::ZipArchiveGenerator.new zag.archive(root_path, files, dst) else # generate tar archive require 'inspec/archive/tar' tag = Inspec::Archive::TarArchiveGenerator.new tag.archive(root_path, files, dst) end @logger.info 'Finished archive generation.' true end |
#check ⇒ Boolean
Check if the profile is internall well-structured. The logger will be used to print information on errors and warnings which are found.
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/inspec/profile.rb', line 168 def check # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/PerceivedComplexity, Metrics/MethodLength # initial values for response object result = { summary: { valid: false, timestamp: Time.now.iso8601, location: @target, profile: nil, controls: 0, }, errors: [], warnings: [], } entry = lambda { |file, line, column, control, msg| { file: file, line: line, column: column, control_id: control, msg: msg, } } warn = lambda { |file, line, column, control, msg| @logger.warn(msg) result[:warnings].push(entry.call(file, line, column, control, msg)) } error = lambda { |file, line, column, control, msg| @logger.error(msg) result[:errors].push(entry.call(file, line, column, control, msg)) } @logger.info "Checking profile in #{@target}" = @source_reader.target.abs_path(@source_reader..ref) if =~ /metadata\.rb$/ warn.call(@target, 0, 0, nil, 'The use of `metadata.rb` is deprecated. Use `inspec.yml`.') end # verify metadata m_errors, m_warnings = .valid m_errors.each { |msg| error.call(, 0, 0, nil, msg) } m_warnings.each { |msg| warn.call(, 0, 0, nil, msg) } m_unsupported = .unsupported m_unsupported.each { |u| warn.call(, 0, 0, nil, "doesn't support: #{u}") } @logger.info 'Metadata OK.' if m_errors.empty? && m_unsupported.empty? # extract profile name result[:summary][:profile] = .params[:name] # check if the profile is using the old test directory instead of the # new controls directory if @source_reader.tests.keys.any? { |x| x =~ %r{^test/$} } warn.call(@target, 0, 0, nil, 'Profile uses deprecated `test` directory, rename it to `controls`.') end count = controls_count result[:summary][:controls] = count if count == 0 warn.call(nil, nil, nil, nil, 'No controls or tests were defined.') else @logger.info("Found #{count} controls.") end # iterate over hash of groups params[:controls].each { |id, control| sfile = control[:source_location][:ref] sline = control[:source_location][:line] error.call(sfile, sline, nil, id, 'Avoid controls with empty IDs') if id.nil? or id.empty? next if id.start_with? '(generated ' warn.call(sfile, sline, nil, id, "Control #{id} has no title") if control[:title].to_s.empty? warn.call(sfile, sline, nil, id, "Control #{id} has no description") if control[:desc].to_s.empty? warn.call(sfile, sline, nil, id, "Control #{id} has impact > 1.0") if control[:impact].to_f > 1.0 warn.call(sfile, sline, nil, id, "Control #{id} has impact < 0.0") if control[:impact].to_f < 0.0 warn.call(sfile, sline, nil, id, "Control #{id} has no tests defined") if control[:checks].nil? or control[:checks].empty? } # profile is valid if we could not find any error result[:summary][:valid] = result[:errors].empty? @logger.info 'Control definitions OK.' if result[:warnings].empty? result end |
#collect_tests(include_list = @controls) ⇒ Object
105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/inspec/profile.rb', line 105 def collect_tests(include_list = @controls) if !@tests_collected locked_dependencies.each(&:collect_tests) tests.each do |path, content| next if content.nil? || content.empty? abs_path = source_reader.target.abs_path(path) @runner_context.load_control_file(content, abs_path, nil) end @tests_collected = true end filter_controls(@runner_context.all_rules, include_list) end |
#controls_count ⇒ Object
253 254 255 |
# File 'lib/inspec/profile.rb', line 253 def controls_count params[:controls].values.length end |
#cwd ⇒ Object
TODO(ssd): Relative path handling really needs to be carefully thought through, especially with respect to relative paths in tarballs.
313 314 315 |
# File 'lib/inspec/profile.rb', line 313 def cwd @target.is_a?(String) && File.directory?(@target) ? @target : './' end |
#filter_controls(controls_array, include_list) ⇒ Object
119 120 121 122 123 124 125 |
# File 'lib/inspec/profile.rb', line 119 def filter_controls(controls_array, include_list) return controls_array if include_list.nil? || include_list.empty? controls_array.select do |c| id = ::Inspec::Rule.rule_id(c) include_list.include?(id) end end |
#generate_lockfile(vendor_path = nil) ⇒ Inspec::Lockfile
Generate an in-memory lockfile. This won’t render the lock file to disk, it must be explicitly written to disk by the caller.
332 333 334 335 336 |
# File 'lib/inspec/profile.rb', line 332 def generate_lockfile(vendor_path = nil) res = Inspec::DependencySet.new(cwd, vendor_path, nil, @backend) res.vendor(.dependencies) Inspec::Lockfile.from_dependency_set(res) end |
#info ⇒ Object
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/inspec/profile.rb', line 145 def info res = params.dup # add information about the controls controls = res[:controls].map do |id, rule| next if id.to_s.empty? data = rule.dup data.delete(:checks) data[:impact] ||= 0.5 data[:impact] = 1.0 if data[:impact] > 1.0 data[:impact] = 0.0 if data[:impact] < 0.0 [id, data] end res[:controls] = Hash[controls.compact] # add information about the required attributes res[:attributes] = res[:attributes].map(&:to_hash) unless res[:attributes].nil? || res[:attributes].empty? res end |
#load_dependencies ⇒ Object
338 339 340 |
# File 'lib/inspec/profile.rb', line 338 def load_dependencies Inspec::DependencySet.from_lockfile(lockfile, cwd, nil, @backend) end |
#load_libraries ⇒ Object
127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/inspec/profile.rb', line 127 def load_libraries locked_dependencies.each do |d| c = d.load_libraries @runner_context.add_resources(c) end libs = libraries.map do |path, content| [content, path] end @runner_context.load_libraries(libs) @runner_context end |
#locked_dependencies ⇒ Object
296 297 298 |
# File 'lib/inspec/profile.rb', line 296 def locked_dependencies @locked_dependencies ||= load_dependencies end |
#lockfile ⇒ Object
317 318 319 320 321 322 323 |
# File 'lib/inspec/profile.rb', line 317 def lockfile @lockfile ||= if lockfile_exists? Inspec::Lockfile.from_file(lockfile_path) else generate_lockfile end end |
#lockfile_exists? ⇒ Boolean
300 301 302 |
# File 'lib/inspec/profile.rb', line 300 def lockfile_exists? File.exist?(lockfile_path) end |
#lockfile_path ⇒ Object
304 305 306 |
# File 'lib/inspec/profile.rb', line 304 def lockfile_path File.join(cwd, 'inspec.lock') end |
#name ⇒ Object
75 76 77 |
# File 'lib/inspec/profile.rb', line 75 def name .params[:name] end |
#params ⇒ Object
101 102 103 |
# File 'lib/inspec/profile.rb', line 101 def params @params ||= load_params end |
#supported? ⇒ Boolean
Is this profile is supported on the current platform of the backend machine and the current inspec version.
89 90 91 |
# File 'lib/inspec/profile.rb', line 89 def supported? supports_os? && supports_runtime? end |
#supports_os? ⇒ Boolean
93 94 95 |
# File 'lib/inspec/profile.rb', line 93 def supports_os? .supports_transport?(@backend) end |
#supports_runtime? ⇒ Boolean
97 98 99 |
# File 'lib/inspec/profile.rb', line 97 def supports_runtime? .supports_runtime? end |
#to_s ⇒ Object
141 142 143 |
# File 'lib/inspec/profile.rb', line 141 def to_s "Inspec::Profile<#{name}>" end |
#version ⇒ Object
79 80 81 |
# File 'lib/inspec/profile.rb', line 79 def version .params[:version] end |