aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/resource/cron/should_allow_changing_parameters_spec.rb
blob: 2df0ea2970c608e47c2062baaf76377c5fb48d62 (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
require 'spec_helper_acceptance'

RSpec.context 'when changing parameters' do
  before(:each) do
    compatible_agents.each do |agent|
      step 'ensure the user exists via puppet'
      setup agent
    end
  end

  after(:each) do
    compatible_agents.each do |agent|
      step 'Cron: cleanup'
      clean agent
    end
  end

  compatible_agents.each do |agent|
    it "manages cron entries on #{agent}" do
      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
        expect(@result.stdout).to match(%r{ensure: created})
      end
      run_cron_on(agent, :list, 'tstuser') do
        expect(@result.stdout).to match(%r{.bin.false})
      end

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

      step 'Cron: allow changing time'
      apply_manifest_on(agent, 'cron { "myjob": command => "/bin/true", user    => "tstuser", hour    => "1", minute  => [1], ensure  => present,}') do
        expect(@result.stdout).to match(%r{hour: defined 'hour' as \['1'\]})
      end
      run_cron_on(agent, :list, 'tstuser') do
        expect(@result.stdout).to match(%r{1 1 . . . .bin.true})
      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
        expect(@result.stdout).to match(%r{hour: hour changed \['1'\].* to \['1', '2'\]})
      end
      run_cron_on(agent, :list, 'tstuser') do
        expect(@result.stdout).to match(%r{1 1,2 . . . .bin.true})
      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
        expect(@result.stdout).to match(%r{hour: hour changed \['1', '2'\].* to \['3', '2'\]})
      end
      run_cron_on(agent, :list, 'tstuser') do
        expect(@result.stdout).to match(%r{1 3,2 . . . .bin.true})
      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
        expect(@result.stdout).to match(%r{minute: undefined 'minute' from \['1'\]})
        expect(@result.stdout).to match(%r{hour: undefined 'hour' from \['3', '2'\]})
      end
      run_cron_on(agent, :list, 'tstuser') do
        expect(@result.stdout).to match(%r{\* \* . . . .bin.true})
      end
    end
  end
end