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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
require 'spec_helper'
require 'puppet/network/format_handler'
require 'puppet/network/format_support'
class FormatTester
include Puppet::Network::FormatSupport
end
describe Puppet::Network::FormatHandler do
before(:each) do
@saved_formats = Puppet::Network::FormatHandler.instance_variable_get(:@formats).dup
Puppet::Network::FormatHandler.instance_variable_set(:@formats, {})
end
after(:each) do
Puppet::Network::FormatHandler.instance_variable_set(:@formats, @saved_formats)
end
describe "when listing formats" do
before(:each) do
one = Puppet::Network::FormatHandler.create(:one, :weight => 1)
allow(one).to receive(:supported?).and_return(true)
two = Puppet::Network::FormatHandler.create(:two, :weight => 6)
allow(two).to receive(:supported?).and_return(true)
three = Puppet::Network::FormatHandler.create(:three, :weight => 2)
allow(three).to receive(:supported?).and_return(true)
four = Puppet::Network::FormatHandler.create(:four, :weight => 8)
allow(four).to receive(:supported?).and_return(false)
end
it "should return all supported formats in decreasing order of weight" do
expect(FormatTester.supported_formats).to eq([:two, :three, :one])
end
end
it "should return the first format as the default format" do
expect(FormatTester).to receive(:supported_formats).and_return [:one, :two]
expect(FormatTester.default_format).to eq(:one)
end
describe "with a preferred serialization format setting" do
before do
one = Puppet::Network::FormatHandler.create(:one, :weight => 1)
allow(one).to receive(:supported?).and_return(true)
two = Puppet::Network::FormatHandler.create(:two, :weight => 6)
allow(two).to receive(:supported?).and_return(true)
end
describe "that is supported" do
before do
Puppet[:preferred_serialization_format] = :one
end
it "should return the preferred serialization format first" do
expect(FormatTester.supported_formats).to eq([:one, :two])
end
end
describe "that is not supported" do
before do
Puppet[:preferred_serialization_format] = :unsupported
end
it "should return the default format first" do
expect(FormatTester.supported_formats).to eq([:two, :one])
end
it "should log a debug message" do
Puppet[:log_level] = 'debug'
expect(Puppet).to receive(:debug) { |&b| expect(b.call).to eq("Value of 'preferred_serialization_format' (unsupported) is invalid for FormatTester, using default (two)") }
expect(Puppet).to receive(:debug) { |&b| expect(b.call).to eq("FormatTester supports formats: two one") }
FormatTester.supported_formats
end
end
end
describe "when using formats" do
let(:format) { Puppet::Network::FormatHandler.create(:my_format, :mime => "text/myformat") }
it "should use the Format to determine whether a given format is supported" do
expect(format).to receive(:supported?).with(FormatTester)
FormatTester.support_format?(:my_format)
end
it "should call the format-specific converter when asked to convert from a given format" do
expect(format).to receive(:intern).with(FormatTester, "mydata")
FormatTester.convert_from(:my_format, "mydata")
end
it "should call the format-specific converter when asked to convert from a given format by mime-type" do
expect(format).to receive(:intern).with(FormatTester, "mydata")
FormatTester.convert_from("text/myformat", "mydata")
end
it "should call the format-specific converter when asked to convert from a given format by format instance" do
expect(format).to receive(:intern).with(FormatTester, "mydata")
FormatTester.convert_from(format, "mydata")
end
it "should raise a FormatError when an exception is encountered when converting from a format" do
expect(format).to receive(:intern).with(FormatTester, "mydata").and_raise("foo")
expect do
FormatTester.convert_from(:my_format, "mydata")
end.to raise_error(
Puppet::Network::FormatHandler::FormatError,
'Could not intern from my_format: foo'
)
end
it "should be able to use a specific hook for converting into multiple instances" do
expect(format).to receive(:intern_multiple).with(FormatTester, "mydata")
FormatTester.convert_from_multiple(:my_format, "mydata")
end
it "should raise a FormatError when an exception is encountered when converting multiple items from a format" do
expect(format).to receive(:intern_multiple).with(FormatTester, "mydata").and_raise("foo")
expect do
FormatTester.convert_from_multiple(:my_format, "mydata")
end.to raise_error(Puppet::Network::FormatHandler::FormatError, 'Could not intern_multiple from my_format: foo')
end
it "should be able to use a specific hook for rendering multiple instances" do
expect(format).to receive(:render_multiple).with("mydata")
FormatTester.render_multiple(:my_format, "mydata")
end
it "should raise a FormatError when an exception is encountered when rendering multiple items into a format" do
expect(format).to receive(:render_multiple).with("mydata").and_raise("foo")
expect do
FormatTester.render_multiple(:my_format, "mydata")
end.to raise_error(Puppet::Network::FormatHandler::FormatError, 'Could not render_multiple to my_format: foo')
end
end
describe "when an instance" do
let(:format) { Puppet::Network::FormatHandler.create(:foo, :mime => "text/foo") }
it "should list as supported a format that reports itself supported" do
expect(format).to receive(:supported?).and_return(true)
expect(FormatTester.new.support_format?(:foo)).to be_truthy
end
it "should raise a FormatError when a rendering error is encountered" do
tester = FormatTester.new
expect(format).to receive(:render).with(tester).and_raise("eh")
expect do
tester.render(:foo)
end.to raise_error(Puppet::Network::FormatHandler::FormatError, 'Could not render to foo: eh')
end
it "should call the format-specific converter when asked to convert to a given format" do
tester = FormatTester.new
expect(format).to receive(:render).with(tester).and_return("foo")
expect(tester.render(:foo)).to eq("foo")
end
it "should call the format-specific converter when asked to convert to a given format by mime-type" do
tester = FormatTester.new
expect(format).to receive(:render).with(tester).and_return("foo")
expect(tester.render("text/foo")).to eq("foo")
end
it "should call the format converter when asked to convert to a given format instance" do
tester = FormatTester.new
expect(format).to receive(:render).with(tester).and_return("foo")
expect(tester.render(format)).to eq("foo")
end
it "should render to the default format if no format is provided when rendering" do
expect(FormatTester).to receive(:default_format).and_return(:foo)
tester = FormatTester.new
expect(format).to receive(:render).with(tester)
tester.render
end
it "should call the format-specific converter when asked for the mime-type of a given format" do
tester = FormatTester.new
expect(format).to receive(:mime).and_return("text/foo")
expect(tester.mime(:foo)).to eq("text/foo")
end
it "should return the default format mime-type if no format is provided" do
expect(FormatTester).to receive(:default_format).and_return(:foo)
tester = FormatTester.new
expect(format).to receive(:mime).and_return("text/foo")
expect(tester.mime).to eq("text/foo")
end
end
end
|