aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/pup_2289_should_not_destroy_data_when_malformed.rb
blob: 670651d17618302105fa986d9bbaeef80abd3e7d (plain)
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
test_name "should not delete data when existing content is malformed"

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-not-delete-data')

  teardown do
    on(agent, "rm -f #{file}", :acceptable_exit_codes => (0..255))
  end

  step "(setup) populate test file with host information"
  on(agent, "printf '127.0.0.2 existing alias\n' > #{file}")

  step "(setup) populate test file with a malformed line"
  on(agent, "printf '==\n' >> #{file}")

  step "tell puppet to add another host entry"
  on(agent, puppet_resource('host', 'test', "target=#{file}",
    'ensure=present', 'ip=127.0.0.3', 'host_aliases=foo'))

  step "verify that the initial host entry was not deleted"
  on(agent, "cat #{file}") do |res|
    fail_test "existing host data was deleted" unless
      res.stdout.include? 'existing'
  end

end