require 'spec_helper' describe Hieracles::Formats::Rawyaml do let(:node) { double("node") } let(:yaml_format) { Hieracles::Formats::Rawyaml.new node } describe ".info" do let(:expected) {"---\nNode: fqdn\nFarm: farm\n"} before { allow(node).to receive(:info).and_return( { 'Node' => 'fqdn', 'Farm' => 'farm' } ) } it { expect(yaml_format.info nil).to eq expected } end describe ".facts" do let(:expected) {"---\nNode: fqdn\nFarm: farm\n"} before { allow(node).to receive(:facts).and_return( { 'Node' => 'fqdn', 'Farm' => 'farm' } ) } it { expect(yaml_format.facts nil).to eq expected } end describe ".files" do let(:expected) { "---\n- path1\n- path2\n" } before { allow(node).to receive(:files).and_return(['path1', 'path2']) } it { expect(yaml_format.files nil).to eq expected } end describe ".paths" do let(:expected) { "---\n- path1\n- path2\n" } before { allow(node).to receive(:paths).and_return(['path1', 'path2']) } it { expect(yaml_format.paths nil).to eq expected } end describe ".modules" do let(:expected) { "---\nmodule1: value\nlongmodule2: not found\n" } before { allow(node).to receive(:modules).and_return( { 'module1' => "value", 'longmodule2' => "not found" } ) } it { expect(yaml_format.modules nil).to eq expected } end describe ".params" do let(:expected) { "---\n" + "params:\n" + " this:\n" + " var: value1\n" } before { allow(node).to receive(:params_tree).and_return( { 'params' => { 'this' => { 'var' => 'value1' } } } ) } it { expect(yaml_format.params nil).to eq expected } end describe ".allparams" do let(:expected) { "---\n"+ "params:\n" + " this:\n" + " var: value1\n" } before { allow(node).to receive(:params_tree).and_return( { 'params' => { 'this' => { 'var' => 'value1' } } } ) } it { expect(yaml_format.allparams nil).to eq expected } end end