583c6190d4689454ec5f95162a2363f4f5662037
[puppet-modules/puppetlabs-apt.git] / spec / defines / source_spec.rb
1 require 'spec_helper'
2 describe 'apt::source', :type => :define do
3   let :title do
4     'my_source'
5   end
6
7   let :default_params do
8     {
9       :ensure             => 'present',
10       :location           => '',
11       :release            => 'karmic',
12       :repos              => 'main',
13       :include_src        => true,
14       :required_packages  => false,
15       :key                => false,
16       :key_server         => 'keyserver.ubuntu.com',
17       :key_content        => false,
18       :key_source         => false,
19       :pin                => false
20     }
21   end
22
23   [{},
24    {
25       :location           => 'http://example.com',
26       :release            => 'precise',
27       :repos              => 'security',
28       :include_src        => false,
29       :required_packages  => 'apache',
30       :key                => 'key_name',
31       :key_server         => 'keyserver.debian.com',
32       :pin                => '600',
33       :key_content        => 'ABCD1234'
34     },
35     {
36       :key                => 'key_name',
37       :key_server         => 'keyserver.debian.com',
38       :key_content        => false,
39     },
40     {
41       :ensure             => 'absent',
42       :location           => 'http://example.com',
43       :release            => 'precise',
44       :repos              => 'security',
45     }
46   ].each do |param_set|
47     describe "when #{param_set == {} ? "using default" : "specifying"} class parameters" do
48       let :param_hash do
49         default_params.merge(param_set)
50       end
51
52       let :facts do
53         {:lsbdistcodename => 'karmic'}
54       end
55
56       let :params do
57         param_set
58       end
59
60       let :filename do
61         "/etc/apt/sources.list.d/#{title}.list"
62       end
63
64       let :content do
65         content = "# #{title}"
66         content << "\ndeb #{param_hash[:location]} #{param_hash[:release]} #{param_hash[:repos]}\n"
67         if param_hash[:include_src]
68           content << "deb-src #{param_hash[:location]} #{param_hash[:release]} #{param_hash[:repos]}\n"
69         end
70         content
71       end
72
73       it { should contain_apt__params }
74
75       it { should contain_file("#{title}.list").with({
76           'ensure'    => param_hash[:ensure],
77           'path'      => filename,
78           'owner'     => 'root',
79           'group'     => 'root',
80           'mode'      => '0644',
81           'content'   => content,
82         })
83       }
84
85       it {
86         if param_hash[:pin]
87           should contain_apt__pin(title).with({
88             "priority"  => param_hash[:pin],
89             "before"    => "File[#{title}.list]"
90           })
91         else
92           should_not contain_apt__pin(title).with({
93             "priority"  => param_hash[:pin],
94             "before"    => "File[#{title}.list]"
95           })
96         end
97       }
98
99       it {
100         should contain_exec("apt_update").with({
101           "command"     => "/usr/bin/apt-get update",
102           "refreshonly" => true
103         })
104       }
105
106       it {
107         if param_hash[:required_packages]
108           should contain_exec("Required packages: '#{param_hash[:required_packages]}' for #{title}").with({
109             "command" => "/usr/bin/apt-get -y install #{param_hash[:required_packages]}",
110             "subscribe"   => "File[#{title}.list]",
111             "refreshonly" => true
112           })
113         else
114           should_not contain_exec("Required packages: '#{param_hash[:required_packages]}' for #{title}").with({
115             "command"     => "/usr/bin/apt-get -y install #{param_hash[:required_packages]}",
116             "subscribe"   => "File[#{title}.list]",
117             "refreshonly" => true
118           })
119         end
120       }
121
122       it {
123         if param_hash[:key]
124           should contain_apt__key("Add key: #{param_hash[:key]} from Apt::Source #{title}").with({
125             "key"         => param_hash[:key],
126             "ensure"      => :present,
127             "key_server"  => param_hash[:key_server],
128             "key_content" => param_hash[:key_content],
129             "key_source"  => param_hash[:key_source],
130             "before"      => "File[#{title}.list]"
131           })
132         else
133           should_not contain_apt__key("Add key: #{param_hash[:key]} from Apt::Source #{title}").with({
134             "key"         => param_hash[:key],
135             "ensure"      => :present,
136             "key_server"  => param_hash[:key_server],
137             "key_content" => param_hash[:key_content],
138             "key_source"  => param_hash[:key_source],
139             "before"      => "File[#{title}.list]"
140           })
141         end
142       }
143     end
144   end
145   describe "without release should raise a Puppet::Error" do
146     let(:default_params) { Hash.new }
147     let(:facts) { Hash.new }
148     it { expect { should raise_error(Puppet::Error) } }
149     let(:facts) { { :lsbdistcodename => 'lucid' } }
150     it { should contain_apt__source(title) }
151   end
152 end