aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/resource/cron/should_allow_changing_parameters.rb
blob: 0e0821df205e90b8eb26ed069f7a5028eb5b45b5 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
test_name 'Cron: should allow changing parameters after creation'
confine :except, platform: 'windows'
confine :except, platform: %r{^eos-} # See PUP-5500
confine :except, platform: %r{^fedora-28}
tag 'audit:medium',
    '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.

require 'puppet/acceptance/common_utils'
extend Puppet::Acceptance::CronUtils

teardown do
  step 'Cron: cleanup'
  agents.each do |agent|
    clean agent
  end
end

agents.each do |agent|
  step 'ensure the user exist via puppet'
  setup agent

  step 'Cron: basic - verify that it can be created'
  apply_manifest_on(agent, 'cron { "myjob": command => "/bin/false", user    => "tstuser", hour    => "*", minute  => [1], ensure  => present,}') do
    assert_match(%r{ensure: created}, result.stdout, "err: #{agent}")
  end
  run_cron_on(agent, :list, 'tstuser') do
    assert_match(%r{.bin.false}, result.stdout, "err: #{agent}")
  end

  step 'Cron: allow changing command'
  apply_manifest_on(agent, 'cron { "myjob": command => "/bin/true", user    => "tstuser", hour    => "*", minute  => [1], ensure  => present,}') do
    assert_match(%r{command changed '.bin.false'.* to '.bin.true'}, result.stdout, "err: #{agent}")
  end
  run_cron_on(agent, :list, 'tstuser') do
    assert_match(%r{1 . . . . .bin.true}, result.stdout, "err: #{agent}")
  end

  step 'Cron: allow changing time'
  apply_manifest_on(agent, 'cron { "myjob": command => "/bin/true", user    => "tstuser", hour    => "1", minute  => [1], ensure  => present,}') do
    assert_match(%r{hour: defined 'hour' as \['1'\]}, result.stdout, "err: #{agent}")
  end
  run_cron_on(agent, :list, 'tstuser') do
    assert_match(%r{1 1 . . . .bin.true}, result.stdout, "err: #{agent}")
  end

  step 'Cron: allow changing time(array)'
  apply_manifest_on(agent, 'cron { "myjob": command => "/bin/true", user    => "tstuser", hour    => ["1","2"], minute  => [1], ensure  => present,}') do
    assert_match(%r{hour: hour changed \['1'\].* to \['1', '2'\]}, result.stdout, "err: #{agent}")
  end
  run_cron_on(agent, :list, 'tstuser') do
    assert_match(%r{1 1,2 . . . .bin.true}, result.stdout, "err: #{agent}")
  end

  step 'Cron: allow changing time(array modification)'
  apply_manifest_on(agent, 'cron { "myjob": command => "/bin/true", user    => "tstuser", hour    => ["3","2"], minute  => [1], ensure  => present,}') do
    assert_match(%r{hour: hour changed \['1', '2'\].* to \['3', '2'\]}, result.stdout, "err: #{agent}")
  end
  run_cron_on(agent, :list, 'tstuser') do
    assert_match(%r{1 3,2 . . . .bin.true}, result.stdout, "err: #{agent}")
  end
  step 'Cron: allow changing time(array modification to *)'
  apply_manifest_on(agent, 'cron { "myjob": command => "/bin/true", user    => "tstuser", hour    => "*", minute  => "*", ensure  => present,}') do
    assert_match(%r{minute: undefined 'minute' from \['1'\]}, result.stdout, "err: #{agent}")
    assert_match(%r{hour: undefined 'hour' from \['3', '2'\]}, result.stdout, "err: #{agent}")
  end
  run_cron_on(agent, :list, 'tstuser') do
    assert_match(%r{\* \* . . . .bin.true}, result.stdout, "err: #{agent}")
  end
end