aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/create_aliases_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/acceptance/tests/create_aliases_spec.rb')
-rw-r--r--spec/acceptance/tests/create_aliases_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/acceptance/tests/create_aliases_spec.rb b/spec/acceptance/tests/create_aliases_spec.rb
new file mode 100644
index 0000000..a76263a
--- /dev/null
+++ b/spec/acceptance/tests/create_aliases_spec.rb
@@ -0,0 +1,24 @@
+test_name 'host should create aliases'
+
+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|
+ target = agent.tmpfile('host-create-aliases')
+
+ step 'clean up the system for testing'
+ on agent, "rm -f #{target}"
+
+ step 'create the record'
+ on(agent, puppet_resource('host', 'test', 'ensure=present',
+ 'ip=127.0.0.7', "target=#{target}", 'host_aliases=alias'))
+
+ step 'verify that the aliases were added'
+ on(agent, "cat #{target} ; rm -f #{target}") do
+ fail_test 'alias was missing' unless
+ stdout =~ %r{^127\.0\.0\.7[[:space:]]+test[[:space:]]alias}
+ end
+end