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

RSpec.context 'when leading zeroes are present' 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 |host|
    it 'does not ignore leading zeroes' do
      step 'apply the resource on the host' do
        on(host, puppet_resource('cron', 'crontest', 'user=tstuser', 'command=/bin/true', 'ensure=present', "minute='05'", "hour='007'", "weekday='03'", "month='0011'", "monthday='07'"), acceptable_exit_codes: [0])
      end

      step 'Verify that crontab -l contains what you expected' do
        run_cron_on(host, :list, 'tstuser') do
          expect(stdout).to match(%r{05 007 07 0011 03 /bin/true})
        end
      end
    end
  end
end