blob: f12f0d717ae4b33babbdd2bc9e3c911978687248 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../spec_helper'
require 'puppet/reports'
describe Puppet::Reports do
it "should instance-load report types" do
Puppet::Reports.instance_loader(:report).should be_instance_of(Puppet::Util::Autoload)
end
it "should have a method for registering report types" do
Puppet::Reports.should respond_to(:register_report)
end
it "should have a method for retrieving report types by name" do
Puppet::Reports.should respond_to(:report)
end
it "should provide a method for returning documentation for all reports" do
Puppet::Reports.expects(:loaded_instances).with(:report).returns([:one, :two])
one = mock 'one', :doc => "onedoc"
two = mock 'two', :doc => "twodoc"
Puppet::Reports.expects(:report).with(:one).returns(one)
Puppet::Reports.expects(:report).with(:two).returns(two)
doc = Puppet::Reports.reportdocs
doc.include?("onedoc").should be_true
doc.include?("twodoc").should be_true
end
end
describe Puppet::Reports, " when loading report types" do
it "should use the instance loader to retrieve report types" do
Puppet::Reports.expects(:loaded_instance).with(:report, :myreporttype)
Puppet::Reports.report(:myreporttype)
end
end
describe Puppet::Reports, " when registering report types" do
it "should evaluate the supplied block as code for a module" do
Puppet::Reports.expects(:genmodule).returns(Module.new)
Puppet::Reports.register_report(:testing) { }
end
it "should extend the report type with the Puppet::Util::Docs module" do
mod = stub 'module', :define_method => true
Puppet::Reports.expects(:genmodule).with { |name, options, block| options[:extend] == Puppet::Util::Docs }.returns(mod)
Puppet::Reports.register_report(:testing) { }
end
it "should define a :report_name method in the module that returns the name of the report" do
mod = mock 'module'
mod.expects(:define_method).with(:report_name)
Puppet::Reports.expects(:genmodule).returns(mod)
Puppet::Reports.register_report(:testing) { }
end
end
|