inspec/lib/vulcano/specfile.rb
Dominik Richter 4ab30252fb feature: vulcano check
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-06-10 17:03:12 +02:00

90 lines
2.1 KiB
Ruby

# encoding: utf-8
# copyright: 2015, Dominik Richter
# license: All rights reserved
require 'vulcano/base_rule'
require 'vulcano/log'
require 'vulcano/dummy'
module Vulcano
class DummyVulcanoRule < VulcanoBaseRule
def method_missing(m, *a, &b)
end
end
class SpecFile
include DummyServerspecTypes
include DummyVulcanoTypes
Log = ::Vulcano::Log.new()
def initialize path
@path = path
@rules = []
@raw = File::read(path)
@invalid_calls = []
self.instance_eval(@raw)
end
def vulcano_meta
# helper methods (which we don't expose)
def rule2check(rule)
{
"impact" => rule.impact,
"title" => rule.title,
"desc" => rule.desc.gsub(/\s*\n\s*/, ' ').strip
}
end
def rules2checks(rules)
checks = {}
rules.map do |rule|
nu = rule2check(rule)
if checks[rule.id].nil?
checks[rule.id] = nu
else
Log.error(
"Not redefining rule id #{rule.id}:\n"+
"-- #{checks[rule.id]}\n"+
"++ #{nu}\n"
)
end
end
checks
end
def mOr(m, other)
(m.nil? || m[1].nil?) ? other : m[1]
end
header = @raw.sub(/^[^#].*\Z/m,'')
{
"title" => mOr(header.match(/^# title: (.*)$/), 'untitled'),
"copyright" => mOr(header.match(/^# copyright: (.*)$/), 'All rights reserved'),
"checks" => rules2checks(@rules)
}
end
def rule id, &block
@rules.push(DummyVulcanoRule.new(id, &block))
end
def method_missing sth, *args
Log.warn "spec file doesn't support: #{sth} #{args.join(', ')}"
@invalid_calls.push([sth, args])
end
def require sth
# ignore vulcano includes, we already have those
lib = File::expand_path( File.join @path, '..', '..', 'lib', "#{sth}.rb" )
if File::file? lib
require_relative lib
end
end
def self.from_file path
if !File::file?(path)
Log.error "Can't find spec file in #{path}"
return nil
end
return SpecFile.new(path)
end
end
end