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
|
# This test is intended to ensure that the --help command-line option works
# properly. This option prints usage information and available command-line
# options.
test_name 'C99984: --help command-line option prints usage information to stdout' do
agents.each do |agent|
step "Agent #{agent}: retrieve usage info from stdout using --help option" do
on(agent, facter('--help')) do |facter_output|
assert_match(/facter \[options\] \[query\] \[query\] \[...\]/, facter_output.stdout, 'Expected stdout to contain usage information')
end
end
step 'Facter help should list options with minus sign' do
options = %w[
--no-color
--custom-dir
--external-dir
--log-level
--no-block
--no-cache
--no-custom-facts
--no-external-facts
--no-ruby
--show-legacy
--list-block-groups
--list-cache-groups
]
on(agent, facter('--help')) do |facter_output|
options.each do |option|
assert_match(/#{option}/, facter_output.stdout, "Key: #{option} not found in help description")
end
end
end
end
end
|