2019-06-11 22:24:35 +00:00
|
|
|
require "inspec/fetcher"
|
|
|
|
require "inspec/metadata"
|
2016-02-21 12:26:31 +00:00
|
|
|
|
|
|
|
module SourceReaders
|
|
|
|
class InspecReader < Inspec.source_reader(1)
|
2019-06-11 22:24:35 +00:00
|
|
|
name "inspec"
|
2016-02-21 12:26:31 +00:00
|
|
|
priority 10
|
|
|
|
|
|
|
|
def self.resolve(target)
|
2019-06-11 22:24:35 +00:00
|
|
|
return new(target, "inspec.yml") if target.files.include?("inspec.yml")
|
2019-07-09 00:20:30 +00:00
|
|
|
|
2016-02-21 12:26:31 +00:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2017-04-26 01:07:39 +00:00
|
|
|
attr_reader :metadata, :tests, :libraries, :data_files
|
2016-02-21 12:26:31 +00:00
|
|
|
|
2016-11-08 07:01:15 +00:00
|
|
|
# This create a new instance of an InSpec profile source reader
|
|
|
|
#
|
2017-02-13 18:17:39 +00:00
|
|
|
# @param [FileProvider] target An instance of a FileProvider object that can list files and read them
|
2016-11-08 07:01:15 +00:00
|
|
|
# @param [String] metadata_source eg. inspec.yml or metadata.rb
|
2016-02-21 12:26:31 +00:00
|
|
|
def initialize(target, metadata_source)
|
2017-04-26 01:07:39 +00:00
|
|
|
@target = target
|
|
|
|
@metadata = load_metadata(metadata_source)
|
|
|
|
@tests = load_tests
|
|
|
|
@libraries = load_libs
|
|
|
|
@data_files = load_data_files
|
2016-02-21 12:26:31 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-03-08 20:22:24 +00:00
|
|
|
def load_metadata(metadata_source)
|
|
|
|
Inspec::Metadata.from_ref(
|
|
|
|
metadata_source,
|
|
|
|
@target.read(metadata_source),
|
2019-06-11 22:24:35 +00:00
|
|
|
nil
|
2017-11-21 07:49:41 +00:00
|
|
|
)
|
2017-03-08 20:22:24 +00:00
|
|
|
rescue Psych::SyntaxError => e
|
|
|
|
raise "Unable to parse inspec.yml: line #{e.line}, #{e.problem} #{e.context}"
|
|
|
|
rescue => e
|
|
|
|
raise "Unable to parse #{metadata_source}: #{e.class} -- #{e.message}"
|
|
|
|
end
|
|
|
|
|
2019-08-09 22:21:47 +00:00
|
|
|
def find_all(regexp)
|
|
|
|
@target.files.grep(regexp)
|
2019-08-08 20:43:47 +00:00
|
|
|
end
|
|
|
|
|
2019-08-09 22:21:47 +00:00
|
|
|
def load_all(regexp)
|
|
|
|
find_all(regexp)
|
2019-08-09 21:57:34 +00:00
|
|
|
.map { |path| file = @target.read(path); [path, file] if file }
|
2019-08-08 21:21:38 +00:00
|
|
|
.compact
|
|
|
|
.to_h
|
2019-08-08 20:58:28 +00:00
|
|
|
end
|
|
|
|
|
2016-02-21 12:26:31 +00:00
|
|
|
def load_tests
|
2019-08-19 17:52:28 +00:00
|
|
|
load_all(%r{^controls/.*\.rb$})
|
2016-02-21 12:26:31 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def load_libs
|
2019-08-19 17:52:28 +00:00
|
|
|
load_all(%r{^libraries/.*\.rb$})
|
2016-02-21 12:26:31 +00:00
|
|
|
end
|
2017-04-26 01:07:39 +00:00
|
|
|
|
|
|
|
def load_data_files
|
2019-08-19 17:52:28 +00:00
|
|
|
load_all(%r{^files/})
|
2017-04-26 01:07:39 +00:00
|
|
|
end
|
2016-02-21 12:26:31 +00:00
|
|
|
end
|
|
|
|
end
|