aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/resource/cron/should_update_existing_spec.rb
diff options
context:
space:
mode:
authorJorie Tappa <jorie@jorietappa.com>2018-08-21 15:58:53 -0700
committerJorie Tappa <jorie@jorietappa.com>2018-08-21 16:17:23 -0700
commit3b48bc4a5a9d3703fbb01d3d6e70cbf2240f0e8b (patch)
tree644dd1e9022cc60b5156c9e33f99fbaa805a2fc3 /spec/acceptance/tests/resource/cron/should_update_existing_spec.rb
parent5441529f7dc3404c93aefb7fb2ef18a1f12b7c47 (diff)
downloadpuppet-cron_core-3b48bc4a5a9d3703fbb01d3d6e70cbf2240f0e8b.tar.gz
puppet-cron_core-3b48bc4a5a9d3703fbb01d3d6e70cbf2240f0e8b.tar.bz2
Convert acceptance tests to Rspec
Diffstat (limited to 'spec/acceptance/tests/resource/cron/should_update_existing_spec.rb')
-rw-r--r--spec/acceptance/tests/resource/cron/should_update_existing_spec.rb41
1 files changed, 41 insertions, 0 deletions
diff --git a/spec/acceptance/tests/resource/cron/should_update_existing_spec.rb b/spec/acceptance/tests/resource/cron/should_update_existing_spec.rb
new file mode 100644
index 0000000..9f0731b
--- /dev/null
+++ b/spec/acceptance/tests/resource/cron/should_update_existing_spec.rb
@@ -0,0 +1,41 @@
+require 'spec_helper_acceptance'
+require 'puppet/acceptance/common_utils'
+extend Puppet::Acceptance::CronUtils
+
+Rspec.context 'when updating cron jobs' do
+ before(:each) do
+ compatible_agents.each do |agent|
+ step 'ensure the user exists via puppet'
+ setup(agent)
+
+ step 'create the existing 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 'updates existing cron entries' do
+ step 'verify that crontab -l contains what you expected'
+ run_cron_on(host, :list, 'tstuser') do
+ expect(stdout).to match(%r{\* \* \* \* \* /bin/true})
+ end
+
+ step 'apply the resource change on the host'
+ on(host, puppet_resource('cron', 'crontest', 'user=tstuser', 'command=/bin/true', 'ensure=present', "hour='0-6'")) do
+ expect(stdout).to match(%r{hour\s+=>\s+\['0-6'\]})
+ end
+
+ step 'verify that crontab -l contains what you expected'
+ run_cron_on(host, :list, 'tstuser') do
+ expect(stdout).to match(%r{\* 0-6 \* \* \* /bin/true})
+ end
+ end
+ end
+end