inspec/test/unit/plugins/resource_test.rb
Steven Danna 384ccb610c Initial attempt at isolating resources between dependencies
Previously, all resources were loaded into a single resource registry.
Now, each profile context has a resource registry, when a profile's
library is loaded into the profile context, we update the
profile-context-specific resource registry.  This local registry is
then used to populate the execution context that the rules are
evaluated in.

Signed-off-by: Steven Danna <steve@chef.io>
2016-09-04 20:55:20 +02:00

54 lines
1.3 KiB
Ruby

require 'helper'
describe Inspec::Plugins::Resource do
let(:base) { Inspec::Plugins::Resource }
describe '#name' do
it "won't register a nil resource" do
Class.new(base) do name nil; end
Inspec::Resource.registry.keys.wont_include nil
Inspec::Resource.registry.keys.wont_include ''
end
it "will register a valid name" do
Class.new(base) do name 'hello'; end
Inspec::Resource.registry['hello'].wont_be :nil?
end
end
def create(&block)
random_name = (0...50).map { (65 + rand(26)).chr }.join
Class.new(base) do
name random_name
instance_eval &block
end
Inspec::Resource.registry[random_name]
end
describe '#desc' do
it "will register a description" do
expected = rand.to_s
create { desc expected }.desc.must_equal expected
end
it "can change the description" do
c = create { desc rand.to_s }
c.desc(x = rand.to_s)
c.desc.must_equal x
end
end
describe '#example' do
it "will register a description" do
expected = rand.to_s
create { example expected }.example.must_equal expected
end
it "can change the description" do
c = create { example rand.to_s }
c.example(x = rand.to_s)
c.example.must_equal x
end
end
end