From 2ac89832b7e065df4490d81b3080b2b570a172ad Mon Sep 17 00:00:00 2001 From: Josh Cooper Date: Mon, 9 Jul 2018 17:15:39 -0700 Subject: Initial host import from puppet#ee7cf4d28077be7d1bdbbe934ea012d41d33deff --- spec/acceptance/tests/should_modify_alias.rb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 spec/acceptance/tests/should_modify_alias.rb (limited to 'spec/acceptance/tests/should_modify_alias.rb') diff --git a/spec/acceptance/tests/should_modify_alias.rb b/spec/acceptance/tests/should_modify_alias.rb new file mode 100644 index 0000000..07198b1 --- /dev/null +++ b/spec/acceptance/tests/should_modify_alias.rb @@ -0,0 +1,27 @@ +test_name "should be able to modify a host alias" + +tag 'audit:low', + 'audit:refactor', # Use block style `test_name` + 'audit:acceptance' # Could be done at the integration (or unit) layer though + # actual changing of resources could irreparably damage a + # host running this, or require special permissions. + +agents.each do |agent| + file = agent.tmpfile('host-modify-alias') + + step "set up files for the test" + on agent, "printf '127.0.0.8 test alias\n' > #{file}" + + step "modify the resource" + on(agent, puppet_resource('host', 'test', "target=#{file}", + 'ensure=present', 'ip=127.0.0.8', 'host_aliases=banzai')) + + step "verify that the content was updated" + on(agent, "cat #{file}; rm -f #{file}") do + fail_test "the alias was not updated" unless + stdout =~ /^127\.0\.0\.8[[:space:]]+test[[:space:]]+banzai[[:space:]]*$/ + end + + step "clean up after the test" + on agent, "rm -f #{file}" +end -- cgit v1.2.3