aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/resource/cron/should_match_existing_spec.rb
blob: 8097714b2e6b7bf704a4fd94beff78eeac5a48e7 (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
require 'spec_helper_acceptance'
require 'puppet/acceptance/common_utils'
extend Puppet::Acceptance::CronUtils

Rspec.context 'when matching cron' do
  before(:each) do
    compatible_agents.each do |agent|
      step 'ensure the user exists via puppet'
      setup(agent)
      step 'Create the existing cron job by hand...'
      run_cron_on(agent, :add, 'tstuser', '* * * * * /bin/true')
    end
  end

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

  compatible_agents.each do |host|
    it 'matches existing cron jobs' do
      step 'Apply the resource on the host using puppet resource'
      on(host, puppet_resource('cron', 'crontest', 'user=tstuser', 'command=/bin/true', 'ensure=present')) do
        expect(stdout).to match(%r{present})
      end

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