summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/stdlib/spec/acceptance/deprecation_spec.rb
blob: 9f25449406a2cba893f9d8e1d0a8362919983c7e (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
require 'spec_helper_acceptance'

describe 'deprecation function' do
  test_file = if fact('operatingsystem') == 'windows'
                'C:/deprecation'
              else
                '/tmp/deprecation'
              end

  # It seems that Windows needs everything to be on one line when using puppet apply -e, otherwise the manifests would be in an easier format
  add_file_manifest = "\"deprecation('key', 'message') file { '#{test_file}': ensure => present, content => 'test', }\""
  remove_file_manifest = "file { '#{test_file}': ensure => absent }"

  before :all do
    apply_manifest(remove_file_manifest)
  end

  context 'with --strict=error', :if => return_puppet_version =~ %r{^4} do
    let(:result) { on(default, puppet('apply', '--strict=error', '-e', add_file_manifest), :acceptable_exit_codes => (0...256)) }

    after :all do
      apply_manifest(remove_file_manifest)
    end

    it 'returns an error' do
      expect(result.exit_code).to eq(1)
    end

    it 'shows the error message' do
      expect(result.stderr).to match(%r{deprecation. key. message})
    end

    describe file(test_file.to_s) do
      it { is_expected.not_to be_file }
    end
  end

  context 'with --strict=warning', :if => return_puppet_version =~ %r{^4} do
    let(:result) { on(default, puppet('apply', '--strict=warning', '-e', add_file_manifest), :acceptable_exit_codes => (0...256)) }

    after :all do
      apply_manifest(remove_file_manifest)
    end

    it 'does not return an error' do
      expect(result.exit_code).to eq(0)
    end

    it 'shows the error message' do
      expect(result.stderr).to match(%r{Warning: message})
    end

    describe file(test_file.to_s) do
      it { is_expected.to be_file }
    end
  end

  context 'with --strict=off', :if => return_puppet_version =~ %r{^4} do
    let(:result) { on(default, puppet('apply', '--strict=off', '-e', add_file_manifest), :acceptable_exit_codes => (0...256)) }

    after :all do
      apply_manifest(remove_file_manifest)
    end

    it 'does not return an error' do
      expect(result.exit_code).to eq(0)
    end

    it 'does not show the error message' do
      expect(result.stderr).not_to match(%r{Warning: message})
    end

    describe file(test_file.to_s) do
      it { is_expected.to be_file }
    end
  end

  context 'puppet 3 test', :if => return_puppet_version =~ %r{^3} do
    let(:result) { on(default, puppet('apply', '--parser=future', '-e', add_file_manifest), :acceptable_exit_codes => (0...256)) }

    after :all do
      apply_manifest(remove_file_manifest)
    end

    it 'returns a deprecation error' do
      expect(result.stderr).to match(%r{Warning: message})
    end
    it 'passes without error' do
      expect(result.exit_code).to eq(0)
    end
  end
end