aboutsummaryrefslogtreecommitdiff
path: root/spec/acceptance/tests/resource/cron/should_remove_leading_and_trailing_whitespace_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/acceptance/tests/resource/cron/should_remove_leading_and_trailing_whitespace_spec.rb')
-rw-r--r--spec/acceptance/tests/resource/cron/should_remove_leading_and_trailing_whitespace_spec.rb41
1 files changed, 41 insertions, 0 deletions
diff --git a/spec/acceptance/tests/resource/cron/should_remove_leading_and_trailing_whitespace_spec.rb b/spec/acceptance/tests/resource/cron/should_remove_leading_and_trailing_whitespace_spec.rb
new file mode 100644
index 0000000..da04daa
--- /dev/null
+++ b/spec/acceptance/tests/resource/cron/should_remove_leading_and_trailing_whitespace_spec.rb
@@ -0,0 +1,41 @@
+require 'spec_helper_acceptance'
+
+RSpec.context 'when stripping whitespace from cron jobs' 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
+
+ agents.each do |host|
+ it 'removes leading and trailing whitespace from cron jobs' do
+ step 'apply the resource on the host using puppet resource'
+ on(host, puppet_resource('cron', 'crontest', 'user=tstuser', "command=' date > /dev/null '", 'ensure=present')) do
+ expect(stdout).to match(%r{created})
+ end
+
+ step 'verify the added crontab entry has stripped whitespace'
+ run_cron_on(host, :list, 'tstuser') do
+ expect(stdout).to match(%r{\* \* \* \* \* date > .dev.null})
+ end
+
+ step 'apply the resource with trailing whitespace and check nothing happened'
+ on(host, puppet_resource('cron', 'crontest', 'user=tstuser', "command='date > /dev/null '", 'ensure=present')) do
+ expect(stdout).not_to match(%r{ensure: created})
+ end
+
+ step 'apply the resource with leading whitespace and check nothing happened'
+ on(host, puppet_resource('cron', 'crontest', 'user=tstuser', "command=' date > /dev/null'", 'ensure=present')) do
+ expect(stdout).not_to match(%r{ensure: created})
+ end
+ end
+ end
+end