2015-09-03 18:36:46 +00:00
|
|
|
# encoding: utf-8
|
2015-08-27 20:59:58 +00:00
|
|
|
require 'vulcano/backend'
|
2015-09-25 17:14:32 +00:00
|
|
|
require 'vulcano/rule'
|
|
|
|
require 'vulcano/dsl'
|
2015-08-27 20:59:58 +00:00
|
|
|
|
|
|
|
module Vulcano
|
|
|
|
class ProfileContext
|
|
|
|
attr_reader :rules, :only_ifs
|
2015-08-30 02:33:15 +00:00
|
|
|
def initialize(profile_id, backend, profile_registry: {}, only_ifs: [])
|
2015-08-29 23:31:36 +00:00
|
|
|
if backend.nil?
|
2015-09-05 14:07:54 +00:00
|
|
|
fail 'ProfileContext is initiated with a backend == nil. ' \
|
2015-09-03 21:18:28 +00:00
|
|
|
'This is a backend error which must be fixed upstream.'
|
2015-08-29 23:31:36 +00:00
|
|
|
end
|
|
|
|
|
2015-08-27 20:59:58 +00:00
|
|
|
@profile_id = profile_id
|
|
|
|
@rules = profile_registry
|
|
|
|
@only_ifs = only_ifs
|
2015-09-09 14:29:20 +00:00
|
|
|
profile_context_owner = self
|
2015-08-27 20:59:58 +00:00
|
|
|
|
2015-09-25 17:14:32 +00:00
|
|
|
dsl = Module.new do
|
|
|
|
Vulcano::Resource.registry.each do |id, r|
|
|
|
|
define_method id.to_sym do |*args|
|
|
|
|
r.new(backend, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
rule_class = Class.new(Vulcano::Rule) do
|
|
|
|
include RSpec::Core::DSL
|
|
|
|
include dsl
|
|
|
|
end
|
|
|
|
|
|
|
|
outer_dsl = Class.new do
|
|
|
|
include dsl
|
|
|
|
|
|
|
|
define_method :rule do |*args, &block|
|
|
|
|
id = args[0]
|
|
|
|
opts = args[1] || {}
|
|
|
|
return if @skip_profile
|
|
|
|
__register_rule rule_class.new(id, opts, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
define_method :describe do |*args, &block|
|
|
|
|
path = block.source_location[0]
|
|
|
|
line = block.source_location[1]
|
|
|
|
id = "#{File.basename(path)}:#{line}"
|
|
|
|
rule = rule_class.new(id, {}) do
|
|
|
|
describe(*args, &block)
|
|
|
|
end
|
|
|
|
__register_rule rule, &block
|
|
|
|
end
|
|
|
|
|
|
|
|
def skip_rule(id)
|
|
|
|
__unregister_rule id
|
|
|
|
end
|
|
|
|
|
|
|
|
def only_if(&block)
|
|
|
|
return unless block_given?
|
|
|
|
@skip_profile = !block.call
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-08-27 20:59:58 +00:00
|
|
|
# This is the heart of the profile context
|
|
|
|
# An instantiated object which has all resources registered to it
|
|
|
|
# and exposes them to the a test file.
|
2015-09-09 14:29:20 +00:00
|
|
|
# rubocop:disable Lint/NestedMethodDefinition
|
2015-09-25 17:14:32 +00:00
|
|
|
ctx = Class.new(outer_dsl) do
|
2015-08-27 20:59:58 +00:00
|
|
|
include Vulcano::DSL
|
2015-08-28 17:10:03 +00:00
|
|
|
|
2015-08-27 20:59:58 +00:00
|
|
|
define_method :__register_rule do |*args|
|
2015-09-09 14:29:20 +00:00
|
|
|
profile_context_owner.register_rule(*args)
|
2015-08-27 20:59:58 +00:00
|
|
|
end
|
|
|
|
define_method :__unregister_rule do |*args|
|
2015-09-09 14:29:20 +00:00
|
|
|
profile_context_owner.unregister_rule(*args)
|
2015-08-27 20:59:58 +00:00
|
|
|
end
|
2015-08-28 17:10:03 +00:00
|
|
|
|
2015-08-27 20:59:58 +00:00
|
|
|
def to_s
|
|
|
|
'Profile Context Run'
|
|
|
|
end
|
|
|
|
end
|
2015-09-09 14:29:20 +00:00
|
|
|
# rubocop:enable all
|
|
|
|
|
2015-08-27 20:59:58 +00:00
|
|
|
@profile_context = ctx.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def load(content, source, line)
|
|
|
|
@profile_context.instance_eval(content, source, line)
|
|
|
|
end
|
|
|
|
|
2015-09-03 18:43:58 +00:00
|
|
|
def unregister_rule(id)
|
2015-09-25 17:14:32 +00:00
|
|
|
full_id = Vulcano::Rule.full_id(@profile_id, id)
|
2015-08-27 20:59:58 +00:00
|
|
|
@rules[full_id] = nil
|
|
|
|
end
|
|
|
|
|
2015-09-03 18:43:58 +00:00
|
|
|
def register_rule(r)
|
2015-08-27 20:59:58 +00:00
|
|
|
# get the full ID
|
2015-09-25 17:14:32 +00:00
|
|
|
full_id = Vulcano::Rule.full_id(@profile_id, r)
|
2015-08-27 20:59:58 +00:00
|
|
|
if full_id.nil?
|
2015-09-05 14:07:54 +00:00
|
|
|
# TODO: error
|
2015-08-27 20:59:58 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
# add the rule to the registry
|
|
|
|
existing = @rules[full_id]
|
|
|
|
if existing.nil?
|
|
|
|
@rules[full_id] = r
|
|
|
|
else
|
2015-09-25 17:14:32 +00:00
|
|
|
Vulcano::Rule.merge(existing, r)
|
2015-08-27 20:59:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|