Class: Inspec::Metadata

Inherits:
Object
  • Object
show all
Defined in:
lib/inspec/metadata.rb

Overview

Extract metadata.rb information A Metadata object may be created and finalized with invalid data. This allows the check CLI command to analyse the issues. Use valid? to determine if the metadata is coherent.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ref, logger = nil) ⇒ Metadata

Returns a new instance of Metadata.



20
21
22
23
24
25
26
# File 'lib/inspec/metadata.rb', line 20

def initialize(ref, logger = nil)
  @ref = ref
  @logger = logger || Logger.new(nil)
  @content = ''
  @params = {}
  @missing_methods = []
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(sth, *args) ⇒ Object



124
125
126
127
# File 'lib/inspec/metadata.rb', line 124

def method_missing(sth, *args)
  @logger.warn "#{ref} doesn't support: #{sth} #{args}"
  @missing_methods.push(sth)
end

Instance Attribute Details

#contentObject

Returns the value of attribute content.



19
20
21
# File 'lib/inspec/metadata.rb', line 19

def content
  @content
end

#paramsObject

Returns the value of attribute params.



19
20
21
# File 'lib/inspec/metadata.rb', line 19

def params
  @params
end

#refObject (readonly)

Returns the value of attribute ref.



18
19
20
# File 'lib/inspec/metadata.rb', line 18

def ref
  @ref
end

Class Method Details

.finalize(metadata, profile_id, options, logger = nil) ⇒ Object



202
203
204
205
206
207
208
209
210
211
212
# File 'lib/inspec/metadata.rb', line 202

def self.finalize(, profile_id, options, logger = nil)
  return nil if .nil?
  param = .params || {}
  options ||= {}
  param['version'] = param['version'].to_s unless param['version'].nil?
  .params = symbolize_keys(param)
  .params[:supports] = finalize_supports(.params[:supports], logger)
  finalize_name(, profile_id, options[:target])

  
end

.finalize_name(metadata, profile_id, original_target) ⇒ Object



181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# File 'lib/inspec/metadata.rb', line 181

def self.finalize_name(, profile_id, original_target)
  # profile_id always overwrites whatever already exists as the name
  unless profile_id.to_s.empty?
    .params[:name] = profile_id.to_s
    return
  end

  # don't overwrite an existing name
  return unless .params[:name].nil?

  # if there's a title, there is no need to set a name too
  return unless .params[:title].nil?

  # create a new name based on the original target if it exists
  # Crudely slug the target to not contain slashes, to avoid breaking
  # unit tests that look for warning sequences
  return if original_target.to_s.empty?
  .params[:title] = "tests from #{original_target}"
  .params[:name] = .params[:title].gsub(%r{[\\\/]}, '.')
end

.finalize_supports(supports, logger) ⇒ Object



166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/inspec/metadata.rb', line 166

def self.finalize_supports(supports, logger)
  case x = supports
  when Hash   then [finalize_supports_elem(x, logger)]
  when Array  then x.map { |e| finalize_supports_elem(e, logger) }.compact
  when nil    then []
  else
    logger ||= Logger.new(nil)
    logger.warn(
      "Do not use deprecated `supports: #{x}` syntax. Instead use:\n"\
      "supports:\n  - os-family: #{x}\n\n",
    )
    [{ :'os-family' => x }] # rubocop:disable Style/HashSyntax
  end
end

.finalize_supports_elem(elem, logger) ⇒ Object



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'lib/inspec/metadata.rb', line 144

def self.finalize_supports_elem(elem, logger)
  case x = elem
  when Hash
    x[:release] = x[:release].to_s if x[:release]
    x
  when Array
    logger.warn(
      'Failed to read supports entry that is an array. Please use '\
      'the `supports: {os-family: xyz}` syntax.',
    )
    nil
  when nil then nil
  else
    logger ||= Logger.new(nil)
    logger.warn(
      "Do not use deprecated `supports: #{x}` syntax. Instead use:\n"\
      "supports:\n  - os-family: #{x}\n\n",
    )
    { :'os-family' => x } # rubocop:disable Style/HashSyntax
  end
end

.from_file(path, profile_id, logger = nil) ⇒ Object



243
244
245
246
247
248
249
250
251
# File 'lib/inspec/metadata.rb', line 243

def self.from_file(path, profile_id, logger = nil)
  unless File.file?(path)
    logger ||= Logger.new(nil)
    logger.error "Can't find metadata file #{path}"
    return nil
  end

  from_ref(File.basename(path), File.read(path), profile_id, logger)
end

.from_ref(ref, content, profile_id, logger = nil) ⇒ Object



228
229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/inspec/metadata.rb', line 228

def self.from_ref(ref, content, profile_id, logger = nil)
  # NOTE there doesn't have to exist an actual file, it may come from an
  # archive (i.e., content)
  case File.basename(ref)
  when 'inspec.yml'
    from_yaml(ref, content, profile_id, logger)
  when 'metadata.rb'
    from_ruby(ref, content, profile_id, logger)
  else
    logger ||= Logger.new(nil)
    logger.error "Don't know how to handle metadata in #{ref}"
    nil
  end
end

.from_ruby(ref, content, profile_id, logger = nil) ⇒ Object



221
222
223
224
225
226
# File 'lib/inspec/metadata.rb', line 221

def self.from_ruby(ref, content, profile_id, logger = nil)
  res = Metadata.new(ref, logger)
  res.instance_eval(content, ref, 1)
  res.content = content
  finalize(res, profile_id, {}, logger)
end

.from_yaml(ref, content, profile_id, logger = nil) ⇒ Object



214
215
216
217
218
219
# File 'lib/inspec/metadata.rb', line 214

def self.from_yaml(ref, content, profile_id, logger = nil)
  res = Metadata.new(ref, logger)
  res.params = YAML.load(content)
  res.content = content
  finalize(res, profile_id, {}, logger)
end

.symbolize_keys(obj) ⇒ Object



133
134
135
136
137
138
139
140
141
142
# File 'lib/inspec/metadata.rb', line 133

def self.symbolize_keys(obj)
  return obj.map { |i| symbolize_keys(i) } if obj.is_a?(Array)
  return obj unless obj.is_a?(Hash)

  obj.each_with_object({}) do |(k, v), h|
    v = symbolize_keys(v) if v.is_a?(Hash)
    v = symbolize_keys(v) if v.is_a?(Array)
    h[k.to_sym] = v
  end
end

Instance Method Details

#dependenciesObject



46
47
48
# File 'lib/inspec/metadata.rb', line 46

def dependencies
  params[:depends] || []
end

#inspec_requirementObject



56
57
58
59
60
61
62
63
64
65
66
# File 'lib/inspec/metadata.rb', line 56

def inspec_requirement
  inspec_in_supports = params[:supports].find { |x| !x[:inspec].nil? }
  if inspec_in_supports
    warn '[DEPRECATED] The use of inspec.yml `supports:inspec` is deprecated and will be removed in InSpec 2.0. Please use `inspec_version` instead.'
    Gem::Requirement.create(inspec_in_supports[:inspec])
  else
    # using Gem::Requirement here to allow nil values which
    # translate to [">= 0"]
    Gem::Requirement.create(params[:inspec_version])
  end
end

#supports(sth, version = nil) ⇒ Object



50
51
52
53
54
# File 'lib/inspec/metadata.rb', line 50

def supports(sth, version = nil)
  # Ignore supports with metadata.rb. This file is legacy and the way it
  # it handles `supports` deprecated. A deprecation warning will be printed
  # already.
end

#supports_platform?(backend) ⇒ Boolean

Returns:

  • (Boolean)


73
74
75
# File 'lib/inspec/metadata.rb', line 73

def supports_platform?(backend)
  backend.platform.supported?(params[:supports])
end

#supports_runtime?Boolean

Returns:

  • (Boolean)


68
69
70
71
# File 'lib/inspec/metadata.rb', line 68

def supports_runtime?
  running = Gem::Version.new(Inspec::VERSION)
  inspec_requirement.satisfied_by?(running)
end

#unsupportedObject



129
130
131
# File 'lib/inspec/metadata.rb', line 129

def unsupported
  @missing_methods
end

#validObject

return all warn and errors



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/inspec/metadata.rb', line 78

def valid # rubocop:disable Metrics/AbcSize
  errors = []
  warnings = []

  %w{name version}.each do |field|
    next unless params[field.to_sym].nil?
    errors.push("Missing profile #{field} in #{ref}")
  end

  if params[:name] =~ %r{[\/\\]}
    warnings.push("Your profile name (#{params[:name]}) contains a slash " \
      'which will not be permitted in InSpec 2.0. Please change your profile ' \
      'name in the `inspec.yml` file.')
  end

  # if version is set, ensure it is correct
  if !params[:version].nil? && !valid_version?(params[:version])
    errors.push('Version needs to be in SemVer format')
  end

  %w{title summary maintainer copyright license}.each do |field|
    next unless params[field.to_sym].nil?
    warnings.push("Missing profile #{field} in #{ref}")
  end

  # if version is set, ensure it is in SPDX format
  if !params[:license].nil? && !Spdx.valid_license?(params[:license])
    warnings.push("License '#{params[:license]}' needs to be in SPDX format. See https://spdx.org/licenses/.")
  end

  [errors, warnings]
end

#valid?Boolean

returns true or false

Returns:

  • (Boolean)


112
113
114
115
# File 'lib/inspec/metadata.rb', line 112

def valid?
  errors, _warnings = valid
  errors.empty? && unsupported.empty?
end

#valid_version?(value) ⇒ Boolean

Returns:

  • (Boolean)


117
118
119
120
121
122
# File 'lib/inspec/metadata.rb', line 117

def valid_version?(value)
  Semverse::Version.new(value)
  true
rescue Semverse::InvalidVersionFormat
  false
end