Sha256: 78ef31b9995d25904c076952bc55508f7108b75780a8f6ba2431eb0da557efa5
Contents?: true
Size: 1.56 KB
Versions: 16
Compression:
Stored size: 1.56 KB
Contents
# This test is intended to ensure that the --yaml command-line option works # properly. This option causes Facter to output facts in YAML format. # A custom fact is used to test for parity between Facter's output and # the expected YAML output. test_name "C99967: --yaml command-line option results in valid YAML output" do require 'yaml' require 'facter/acceptance/user_fact_utils' extend Facter::Acceptance::UserFactUtils content = <<EOM Facter.add('structured_fact') do setcode do { "foo" => {"nested" => "value1"}, "bar" => "value2", "baz" => "value3" } end end EOM agents.each do |agent| step "Agent #{agent}: create a structured custom fact" do custom_dir = get_user_fact_dir(agent['platform'], on(agent, facter('kernelmajversion')).stdout.chomp.to_f) custom_fact = File.join(custom_dir, 'custom_fact.rb') on(agent, "mkdir -p '#{custom_dir}'") create_remote_file(agent, custom_fact, content) on(agent, "chmod +x '#{custom_fact}'") teardown do on(agent, "rm -f '#{custom_fact}'") end step "Agent #{agent}: retrieve output using the --yaml option" do on(agent, facter("--custom-dir '#{custom_dir}' --yaml structured_fact")) do begin expected = {"structured_fact" => {"foo" => {"nested" => "value1"}, "bar" => "value2", "baz" => "value3" }}.to_yaml.gsub("---\n", '') assert_equal(expected, stdout, "YAML output does not match expected output") rescue fail_test "Couldn't parse output as YAML" end end end end end end
Version data entries
16 entries across 16 versions & 2 rubygems