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