File: archive_spec.rb

package info (click to toggle)
puppet-module-puppet-archive 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 688 kB
  • sloc: ruby: 2,152; sh: 30; makefile: 2
file content (100 lines) | stat: -rw-r--r-- 2,406 bytes parent folder | download | duplicates (2)
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
93
94
95
96
97
98
99
100
require 'spec_helper'

describe 'archive' do
  context 'RHEL' do
    let(:facts) do
      {
        os: { family: 'RedHat' },
        operatingsystem: 'RedHat',
        puppetversion: '4.4.0'
      }
    end

    context 'default' do
      it { is_expected.not_to contain_package('7zip') }
      it { is_expected.not_to contain_file('/opt/awscli-bundle') }
      it { is_expected.not_to contain_archive('awscli-bundle.zip') }
      it { is_expected.not_to contain_exec('install_aws_cli') }
      it { is_expected.to compile.with_all_deps }
      it { is_expected.to contain_class('archive::params') }
    end

    context 'with aws_cli' do
      let(:params) do
        {
          aws_cli_install: true
        }
      end

      it { is_expected.to contain_file('/opt/awscli-bundle') }
      it { is_expected.to contain_archive('awscli-bundle.zip') }
      it { is_expected.to contain_exec('install_aws_cli') }
    end
  end

  describe 'Windows' do
    let(:default_facts) do
      {
        os: { family: 'Windows' },
        operatingsystem: 'Windows',
        archive_windir: 'C:/staging'
      }
    end

    context 'default 7zip chcolatey package' do
      let(:facts) do
        {
          puppetversion: '4.4.0'
        }.merge(default_facts)
      end

      it do
        is_expected.to contain_package('7zip').with(
          name: '7zip',
          provider: 'chocolatey'
        )
      end
      it { is_expected.not_to contain_archive('awscli-bundle.zip') }
    end

    context 'with 7zip msi package' do
      let(:facts) do
        {
          puppetversion: '3.4.3 (Puppet Enterprise 3.2.3)'
        }.merge(default_facts)
      end

      let(:params) do
        {
          seven_zip_name: '7-Zip 9.20 (x64 edition)',
          seven_zip_source: 'C:/Windows/Temp/7z920-x64.msi',
          seven_zip_provider: 'windows'
        }
      end

      it do
        is_expected.to contain_package('7zip').with(
          name: '7-Zip 9.20 (x64 edition)',
          source: 'C:/Windows/Temp/7z920-x64.msi',
          provider: 'windows'
        )
      end
    end

    context 'without 7zip' do
      let(:facts) do
        {
          puppetversion: '3.4.3 (Puppet Enterprise 3.2.3)'
        }.merge(default_facts)
      end

      let(:params) do
        {
          seven_zip_provider: ''
        }
      end

      it { is_expected.not_to contain_package('7zip') }
    end
  end
end