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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584
|
require 'spec_helper'
require 'puppet/network/formats'
require 'puppet/network/format_support'
class FormatsTest
include Puppet::Network::FormatSupport
attr_accessor :string
def ==(other)
string == other.string
end
def self.from_data_hash(data)
new(data['string'])
end
def initialize(string)
@string = string
end
def to_data_hash(*args)
{
'string' => @string
}
end
def to_binary
string
end
def self.from_binary(data)
self.new(data)
end
end
describe "Puppet Network Format" do
it "should include a msgpack format", :if => Puppet.features.msgpack? do
expect(Puppet::Network::FormatHandler.format(:msgpack)).not_to be_nil
end
describe "msgpack", :if => Puppet.features.msgpack? do
let(:msgpack) { Puppet::Network::FormatHandler.format(:msgpack) }
it "should have its mime type set to application/x-msgpack" do
expect(msgpack.mime).to eq("application/x-msgpack")
end
it "should have a nil charset" do
expect(msgpack.charset).to be_nil
end
it "should have a weight of 20" do
expect(msgpack.weight).to eq(20)
end
it "should fail when one element does not have a from_data_hash" do
expect do
msgpack.intern_multiple(Hash, MessagePack.pack(["foo"]))
end.to raise_error(NoMethodError)
end
it "should be able to serialize a catalog" do
cat = Puppet::Resource::Catalog.new('foo', Puppet::Node::Environment.create(:testing, []))
cat.add_resource(Puppet::Resource.new(:file, 'my_file'))
catunpack = MessagePack.unpack(cat.to_msgpack)
expect(catunpack).to include(
"tags"=>[],
"name"=>"foo",
"version"=>nil,
"environment"=>"testing",
"edges"=>[],
"classes"=>[]
)
expect(catunpack["resources"][0]).to include(
"type"=>"File",
"title"=>"my_file",
"exported"=>false
)
expect(catunpack["resources"][0]["tags"]).to include(
"file",
"my_file"
)
end
end
describe "yaml" do
let(:yaml) { Puppet::Network::FormatHandler.format(:yaml) }
it "should have its mime type set to text/yaml" do
expect(yaml.mime).to eq("text/yaml")
end
# we shouldn't be using yaml on the network
it "should have a nil charset" do
expect(yaml.charset).to be_nil
end
it "should be supported on Strings" do
expect(yaml).to be_supported(String)
end
it "should render by calling 'to_yaml' on the instance" do
instance = double('instance')
expect(instance).to receive(:to_yaml).and_return("foo")
expect(yaml.render(instance)).to eq("foo")
end
it "should render multiple instances by calling 'to_yaml' on the array" do
instances = [double('instance')]
expect(instances).to receive(:to_yaml).and_return("foo")
expect(yaml.render_multiple(instances)).to eq("foo")
end
it "should deserialize YAML" do
expect(yaml.intern(String, YAML.dump("foo"))).to eq("foo")
end
it "should deserialize symbols as strings" do
expect { yaml.intern(String, YAML.dump(:foo))}.to raise_error(Puppet::Network::FormatHandler::FormatError)
end
it "should skip data_to_hash if data is already an instance of the specified class" do
# The rest terminus for the report indirected type relies on this behavior
data = YAML.dump([1, 2])
instance = yaml.intern(Array, data)
expect(instance).to eq([1, 2])
end
it "should load from yaml when deserializing an array" do
text = YAML.dump(["foo"])
expect(yaml.intern_multiple(String, text)).to eq(["foo"])
end
it "fails intelligibly instead of calling to_json with something other than a hash" do
expect do
yaml.intern(Puppet::Node, '')
end.to raise_error(Puppet::Network::FormatHandler::FormatError, /did not contain a valid instance/)
end
it "fails intelligibly when intern_multiple is called and yaml doesn't decode to an array" do
expect do
yaml.intern_multiple(Puppet::Node, '')
end.to raise_error(Puppet::Network::FormatHandler::FormatError, /did not contain a collection/)
end
it "fails intelligibly instead of calling to_json with something other than a hash when interning multiple" do
expect do
yaml.intern_multiple(Puppet::Node, YAML.dump(["hello"]))
end.to raise_error(Puppet::Network::FormatHandler::FormatError, /did not contain a valid instance/)
end
it 'accepts indirected classes' do
[
Puppet::Node::Facts.new('foo', {}),
Puppet::Node.new('foo'),
Puppet::Resource.new('File', '/foo'),
Puppet::Transaction::Report.new('foo'),
Puppet::Resource::Catalog.new
].each { |obj| yaml.intern(obj.class, YAML.dump(obj.to_data_hash)) }
end
it 'raises when interning an instance of an unacceptable indirected type' do
obj = :something
expect {
yaml.intern(obj.class, YAML.dump(obj))
}.to raise_error(Puppet::Network::FormatHandler::FormatError, /Tried to load unspecified class: Symbol/)
end
it 'raises when interning multple instances of an unacceptable indirected type' do
obj = :something
expect {
yaml.intern_multiple(obj.class, YAML.dump([obj]))
}.to raise_error(Puppet::Network::FormatHandler::FormatError, /Tried to load unspecified class: Symbol/)
end
end
describe "plaintext" do
let(:text) { Puppet::Network::FormatHandler.format(:s) }
it "should have its mimetype set to text/plain" do
expect(text.mime).to eq("text/plain")
end
it "should use 'utf-8' charset" do
expect(text.charset).to eq(Encoding::UTF_8)
end
it "should use 'txt' as its extension" do
expect(text.extension).to eq("txt")
end
end
describe "dot" do
let(:dot) { Puppet::Network::FormatHandler.format(:dot) }
it "should have its mimetype set to text/dot" do
expect(dot.mime).to eq("text/dot")
end
end
describe Puppet::Network::FormatHandler.format(:binary) do
let(:binary) { Puppet::Network::FormatHandler.format(:binary) }
it "should exist" do
expect(binary).not_to be_nil
end
it "should have its mimetype set to application/octet-stream" do
expect(binary.mime).to eq("application/octet-stream")
end
it "should have a nil charset" do
expect(binary.charset).to be_nil
end
it "should not be supported by default" do
expect(binary).to_not be_supported(String)
end
it "should render an instance as binary" do
instance = FormatsTest.new("foo")
expect(binary.render(instance)).to eq("foo")
end
it "should intern an instance from a JSON hash" do
instance = binary.intern(FormatsTest, "foo")
expect(instance.string).to eq("foo")
end
it "should fail if its multiple_render method is used" do
expect {
binary.render_multiple("foo")
}.to raise_error(NotImplementedError, /can not render multiple instances to application\/octet-stream/)
end
it "should fail if its multiple_intern method is used" do
expect {
binary.intern_multiple(String, "foo")
}.to raise_error(NotImplementedError, /can not intern multiple instances from application\/octet-stream/)
end
it "should have a weight of 1" do
expect(binary.weight).to eq(1)
end
end
describe "pson" do
let(:pson) { Puppet::Network::FormatHandler.format(:pson) }
it "should include a pson format" do
expect(pson).not_to be_nil
end
it "should have its mime type set to text/pson" do
expect(pson.mime).to eq("text/pson")
end
it "should have a nil charset" do
expect(pson.charset).to be_nil
end
it "should require the :render_method" do
expect(pson.required_methods).to be_include(:render_method)
end
it "should require the :intern_method" do
expect(pson.required_methods).to be_include(:intern_method)
end
it "should have a weight of 10" do
expect(pson.weight).to eq(10)
end
it "should render an instance as pson" do
instance = FormatsTest.new("foo")
expect(pson.render(instance)).to eq({"string" => "foo"}.to_pson)
end
it "should render multiple instances as pson" do
instances = [FormatsTest.new("foo")]
expect(pson.render_multiple(instances)).to eq([{"string" => "foo"}].to_pson)
end
it "should intern an instance from a pson hash" do
text = PSON.dump({"string" => "parsed_pson"})
instance = pson.intern(FormatsTest, text)
expect(instance.string).to eq("parsed_pson")
end
it "should skip data_to_hash if data is already an instance of the specified class" do
# The rest terminus for the report indirected type relies on this behavior
data = PSON.dump([1, 2])
instance = pson.intern(Array, data)
expect(instance).to eq([1, 2])
end
it "should intern multiple instances from a pson array" do
text = PSON.dump(
[
{
"string" => "BAR"
},
{
"string" => "BAZ"
}
]
)
expect(pson.intern_multiple(FormatsTest, text)).to eq([FormatsTest.new('BAR'), FormatsTest.new('BAZ')])
end
it "should unwrap the data from legacy clients" do
text = PSON.dump(
{
"type" => "FormatsTest",
"data" => {
"string" => "parsed_json"
}
}
)
instance = pson.intern(FormatsTest, text)
expect(instance.string).to eq("parsed_json")
end
it "fails intelligibly when given invalid data" do
expect do
pson.intern(Puppet::Node, '')
end.to raise_error(PSON::ParserError, /source did not contain any PSON/)
end
end
describe "json" do
let(:json) { Puppet::Network::FormatHandler.format(:json) }
it "should include a json format" do
expect(json).not_to be_nil
end
it "should have its mime type set to application/json" do
expect(json.mime).to eq("application/json")
end
it "should use 'utf-8' charset" do
expect(json.charset).to eq(Encoding::UTF_8)
end
it "should require the :render_method" do
expect(json.required_methods).to be_include(:render_method)
end
it "should require the :intern_method" do
expect(json.required_methods).to be_include(:intern_method)
end
it "should have a weight of 15" do
expect(json.weight).to eq(15)
end
it "should render an instance as JSON" do
instance = FormatsTest.new("foo")
expect(json.render(instance)).to eq({"string" => "foo"}.to_json)
end
it "should render multiple instances as a JSON array of hashes" do
instances = [FormatsTest.new("foo")]
expect(json.render_multiple(instances)).to eq([{"string" => "foo"}].to_json)
end
it "should render multiple instances as a JSON array of hashes when multi_json is not present" do
hide_const("MultiJson") if defined?(MultiJson)
instances = [FormatsTest.new("foo")]
expect(json.render_multiple(instances)).to eq([{"string" => "foo"}].to_json)
end
it "should intern an instance from a JSON hash" do
text = Puppet::Util::Json.dump({"string" => "parsed_json"})
instance = json.intern(FormatsTest, text)
expect(instance.string).to eq("parsed_json")
end
it "should skip data_to_hash if data is already an instance of the specified class" do
# The rest terminus for the report indirected type relies on this behavior
data = Puppet::Util::Json.dump([1, 2])
instance = json.intern(Array, data)
expect(instance).to eq([1, 2])
end
it "should intern multiple instances from a JSON array of hashes" do
text = Puppet::Util::Json.dump(
[
{
"string" => "BAR"
},
{
"string" => "BAZ"
}
]
)
expect(json.intern_multiple(FormatsTest, text)).to eq([FormatsTest.new('BAR'), FormatsTest.new('BAZ')])
end
it "should reject wrapped data from legacy clients as they've never supported JSON" do
text = Puppet::Util::Json.dump(
{
"type" => "FormatsTest",
"data" => {
"string" => "parsed_json"
}
}
)
instance = json.intern(FormatsTest, text)
expect(instance.string).to be_nil
end
it "fails intelligibly when given invalid data" do
expect do
json.intern(Puppet::Node, '')
end.to raise_error(Puppet::Util::Json::ParseError)
end
end
describe ":console format" do
let(:console) { Puppet::Network::FormatHandler.format(:console) }
it "should include a console format" do
expect(console).to be_an_instance_of Puppet::Network::Format
end
[:intern, :intern_multiple].each do |method|
it "should not implement #{method}" do
expect { console.send(method, String, 'blah') }.to raise_error NotImplementedError
end
end
context "when rendering ruby types" do
["hello", 1, 1.0].each do |input|
it "should just return a #{input.inspect}" do
expect(console.render(input)).to eq(input)
end
end
{ true => "true",
false => "false",
nil => "null",
}.each_pair do |input, output|
it "renders #{input.class} as '#{output}'" do
expect(console.render(input)).to eq(output)
end
end
it "renders an Object as its quoted inspect value" do
obj = Object.new
expect(console.render(obj)).to eq("\"#{obj.inspect}\"")
end
end
context "when rendering arrays" do
{
[] => "",
[1, 2] => "1\n2\n",
["one"] => "one\n",
[{1 => 1}] => "{1=>1}\n",
[[1, 2], [3, 4]] => "[1, 2]\n[3, 4]\n"
}.each_pair do |input, output|
it "should render #{input.inspect} as one item per line" do
expect(console.render(input)).to eq(output)
end
end
end
context "when rendering hashes" do
{
{} => "",
{1 => 2} => "1 2\n",
{"one" => "two"} => "one \"two\"\n", # odd that two is quoted but one isn't
{[1,2] => 3, [2,3] => 5, [3,4] => 7} => "{\n \"[1, 2]\": 3,\n \"[2, 3]\": 5,\n \"[3, 4]\": 7\n}",
{{1 => 2} => {3 => 4}} => "{\n \"{1=>2}\": {\n \"3\": 4\n }\n}"
}.each_pair do |input, output|
it "should render #{input.inspect}" do
expect(console.render(input)).to eq(output)
end
end
it "should render a {String,Numeric}-keyed Hash into a table" do
json = Puppet::Network::FormatHandler.format(:json)
object = Object.new
hash = { "one" => 1, "two" => [], "three" => {}, "four" => object, 5 => 5,
6.0 => 6 }
# Gotta love ASCII-betical sort order. Hope your objects are better
# structured for display than my test one is. --daniel 2011-04-18
expect(console.render(hash)).to eq <<EOT
5 5
6.0 6
four #{json.render(object).chomp}
one 1
three {}
two []
EOT
end
end
context "when rendering face-related objects" do
it "pretty prints facts" do
tm = Time.new(2016, 1, 27, 19, 30, 0)
values = {
"architecture" => "x86_64",
"os" => {
"release" => {
"full" => "15.6.0"
}
},
"system_uptime" => {
"seconds" => 505532
}
}
facts = Puppet::Node::Facts.new("foo", values)
facts.timestamp = tm
# For some reason, render omits the last newline, seems like a bug
expect(console.render(facts)).to eq(<<EOT.chomp)
{
"name": "foo",
"values": {
"architecture": "x86_64",
"os": {
"release": {
"full": "15.6.0"
}
},
"system_uptime": {
"seconds": 505532
}
},
"timestamp": "#{tm.iso8601(9)}"
}
EOT
end
end
end
describe ":flat format" do
let(:flat) { Puppet::Network::FormatHandler.format(:flat) }
it "should include a flat format" do
expect(flat).to be_an_instance_of Puppet::Network::Format
end
[:intern, :intern_multiple].each do |method|
it "should not implement #{method}" do
expect { flat.send(method, String, 'blah') }.to raise_error NotImplementedError
end
end
context "when rendering arrays" do
{
[] => "",
[1, 2] => "0=1\n1=2\n",
["one"] => "0=one\n",
[{"one" => 1}, {"two" => 2}] => "0.one=1\n1.two=2\n",
[['something', 'for'], ['the', 'test']] => "0=[\"something\", \"for\"]\n1=[\"the\", \"test\"]\n"
}.each_pair do |input, output|
it "should render #{input.inspect} as one item per line" do
expect(flat.render(input)).to eq(output)
end
end
end
context "when rendering hashes" do
{
{} => "",
{1 => 2} => "1=2\n",
{"one" => "two"} => "one=two\n",
{[1,2] => 3, [2,3] => 5, [3,4] => 7} => "[1, 2]=3\n[2, 3]=5\n[3, 4]=7\n",
}.each_pair do |input, output|
it "should render #{input.inspect}" do
expect(flat.render(input)).to eq(output)
end
end
end
end
end
|