summaryrefslogtreecommitdiff
path: root/spec/unit/provider/package/apt_spec.rb
blob: b67583bba777f7329b86b18aa884068a2d369420 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
#
# Author:: Adam Jacob (<adam@chef.io>)
# Copyright:: Copyright 2008-2016, Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require "spec_helper"
require "ostruct"

describe Chef::Provider::Package::Apt do
  # XXX: sorry this is ugly and was done quickly to get 12.0.2 out, this file needs a rewrite to use
  # let blocks and shared examples
  [ Chef::Resource::Package, Chef::Resource::AptPackage ].each do |resource_klass|
    describe "when the new_resource is a #{resource_klass}" do
      before(:each) do
        @node = Chef::Node.new
        @events = Chef::EventDispatch::Dispatcher.new
        @run_context = Chef::RunContext.new(@node, {}, @events)
        @new_resource = resource_klass.new("irssi", @run_context)

        @status = double("Status", :exitstatus => 0)
        @provider = Chef::Provider::Package::Apt.new(@new_resource, @run_context)
        @stdin = StringIO.new
        @stdout = <<-PKG_STATUS
irssi:
  Installed: (none)
  Candidate: 0.8.14-1ubuntu4
  Version table:
     0.8.14-1ubuntu4 0
        500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
        PKG_STATUS
        @stderr = ""
        @shell_out = OpenStruct.new(:stdout => @stdout, :stdin => @stdin, :stderr => @stderr, :status => @status, :exitstatus => 0)
        @timeout = 900
      end

      describe "when loading current resource" do
        it "should create a current resource with the name of the new_resource" do
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache policy #{@new_resource.package_name}",
            :timeout => @timeout,
          ).and_return(@shell_out)
          @provider.load_current_resource

          current_resource = @provider.current_resource
          expect(current_resource).to be_a(Chef::Resource::Package)
          expect(current_resource.name).to eq("irssi")
          expect(current_resource.package_name).to eq("irssi")
          expect(current_resource.version).to be_nil
        end

        it "should set the installed version if package has one" do
          @stdout.replace(<<-INSTALLED)
sudo:
  Installed: 1.7.2p1-1ubuntu5.3
  Candidate: 1.7.2p1-1ubuntu5.3
  Version table:
 *** 1.7.2p1-1ubuntu5.3 0
        500 http://us.archive.ubuntu.com/ubuntu/ lucid-updates/main Packages
        500 http://security.ubuntu.com/ubuntu/ lucid-security/main Packages
        100 /var/lib/dpkg/status
     1.7.2p1-1ubuntu5 0
        500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
          INSTALLED
          expect(@provider).to receive(:shell_out!).and_return(@shell_out)
          @provider.load_current_resource
          expect(@provider.current_resource.version).to eq("1.7.2p1-1ubuntu5.3")
          expect(@provider.candidate_version).to eql("1.7.2p1-1ubuntu5.3")
        end

        # libmysqlclient-dev is a real package in newer versions of debian + ubuntu
        # list of virtual packages: http://www.debian.org/doc/packaging-manuals/virtual-package-names-list.txt
        it "should not install the virtual package there is a single provider package and it is installed" do
          @new_resource.package_name("libmysqlclient15-dev")
          virtual_package_out = <<-VPKG_STDOUT
libmysqlclient15-dev:
  Installed: (none)
  Candidate: (none)
  Version table:
          VPKG_STDOUT
          virtual_package = double(:stdout => virtual_package_out, :exitstatus => 0)
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache policy libmysqlclient15-dev",
            :timeout => @timeout,
          ).and_return(virtual_package)
          showpkg_out = <<-SHOWPKG_STDOUT
Package: libmysqlclient15-dev
Versions:

Reverse Depends:
  libmysqlclient-dev,libmysqlclient15-dev
  libmysqlclient-dev,libmysqlclient15-dev
  libmysqlclient-dev,libmysqlclient15-dev
  libmysqlclient-dev,libmysqlclient15-dev
  libmysqlclient-dev,libmysqlclient15-dev
  libmysqlclient-dev,libmysqlclient15-dev
Dependencies:
Provides:
Reverse Provides:
libmysqlclient-dev 5.1.41-3ubuntu12.7
libmysqlclient-dev 5.1.41-3ubuntu12.10
libmysqlclient-dev 5.1.41-3ubuntu12
          SHOWPKG_STDOUT
          showpkg = double(:stdout => showpkg_out, :exitstatus => 0)
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache showpkg libmysqlclient15-dev",
            :timeout => @timeout,
          ).and_return(showpkg)
          real_package_out = <<-RPKG_STDOUT
libmysqlclient-dev:
  Installed: 5.1.41-3ubuntu12.10
  Candidate: 5.1.41-3ubuntu12.10
  Version table:
 *** 5.1.41-3ubuntu12.10 0
        500 http://us.archive.ubuntu.com/ubuntu/ lucid-updates/main Packages
        100 /var/lib/dpkg/status
     5.1.41-3ubuntu12.7 0
        500 http://security.ubuntu.com/ubuntu/ lucid-security/main Packages
     5.1.41-3ubuntu12 0
        500 http://us.archive.ubuntu.com/ubuntu/ lucid/main Packages
          RPKG_STDOUT
          real_package = double(:stdout => real_package_out, :exitstatus => 0)
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache policy libmysqlclient-dev",
            :timeout => @timeout,
          ).and_return(real_package)
          @provider.load_current_resource
        end

        it "should raise an exception if you specify a virtual package with multiple provider packages" do
          @new_resource.package_name("mp3-decoder")
          virtual_package_out = <<-VPKG_STDOUT
mp3-decoder:
  Installed: (none)
  Candidate: (none)
  Version table:
          VPKG_STDOUT
          virtual_package = double(:stdout => virtual_package_out, :exitstatus => 0)
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache policy mp3-decoder",
            :timeout => @timeout,
          ).and_return(virtual_package)
          showpkg_out = <<-SHOWPKG_STDOUT
Package: mp3-decoder
Versions:

Reverse Depends:
  nautilus,mp3-decoder
  vux,mp3-decoder
  plait,mp3-decoder
  ecasound,mp3-decoder
  nautilus,mp3-decoder
Dependencies:
Provides:
Reverse Provides:
vlc-nox 1.0.6-1ubuntu1.8
vlc 1.0.6-1ubuntu1.8
vlc-nox 1.0.6-1ubuntu1
vlc 1.0.6-1ubuntu1
opencubicplayer 1:0.1.17-2
mpg321 0.2.10.6
mpg123 1.12.1-0ubuntu1
          SHOWPKG_STDOUT
          showpkg = double(:stdout => showpkg_out, :exitstatus => 0)
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache showpkg mp3-decoder",
            :timeout => @timeout,
          ).and_return(showpkg)
          expect { @provider.load_current_resource }.to raise_error(Chef::Exceptions::Package)
        end

        it "should run apt-cache policy with the default_release option, if there is one on the resource" do
          @new_resource = Chef::Resource::AptPackage.new("irssi", @run_context)
          @provider = Chef::Provider::Package::Apt.new(@new_resource, @run_context)

          allow(@new_resource).to receive(:default_release).and_return("lenny-backports")
          allow(@new_resource).to receive(:provider).and_return(nil)
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache -o APT::Default-Release=lenny-backports policy irssi",
            :timeout => @timeout,
          ).and_return(@shell_out)
          @provider.load_current_resource
        end

        it "raises an exception if a source is specified (CHEF-5113)" do
          @new_resource.source "pluto"
          expect(@provider).to receive(:shell_out!).with(
            "apt-cache policy #{@new_resource.package_name}",
            :timeout => @timeout,
          ).and_return(@shell_out)
          @provider.load_current_resource
          @provider.define_resource_requirements
          expect(@provider).to receive(:shell_out!).with("apt-cache policy irssi", { :timeout => 900 }).and_return(@shell_out)
          expect { @provider.run_action(:install) }.to raise_error(Chef::Exceptions::Package)
        end
      end

      context "after loading the current resource" do
        before do
          @current_resource = resource_klass.new("irssi", @run_context)
          @provider.current_resource = @current_resource
        end

        describe "install_package" do
          it "should run apt-get install with the package name and version" do
            expect(@provider).to receive(:shell_out!). with(
              "apt-get -q -y install irssi=0.8.12-7",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @provider.install_package("irssi", "0.8.12-7")
          end

          it "should run apt-get install with the package name and version and options if specified" do
            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y --force-yes install irssi=0.8.12-7",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @new_resource.options("--force-yes")
            @provider.install_package("irssi", "0.8.12-7")
          end

          it "should run apt-get install with the package name and version and default_release if there is one and provider is explicitly defined" do
            @new_resource = nil
            @new_resource = Chef::Resource::AptPackage.new("irssi", @run_context)
            @new_resource.default_release("lenny-backports")
            @new_resource.provider = nil
            @provider.new_resource = @new_resource

            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y -o APT::Default-Release=lenny-backports install irssi=0.8.12-7",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )

            @provider.install_package("irssi", "0.8.12-7")
          end
        end

        describe resource_klass, "upgrade_package" do
          it "should run install_package with the name and version" do
            expect(@provider).to receive(:install_package).with("irssi", "0.8.12-7")
            @provider.upgrade_package("irssi", "0.8.12-7")
          end
        end

        describe resource_klass, "remove_package" do
          it "should run apt-get remove with the package name" do
            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y remove irssi",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @provider.remove_package("irssi", "0.8.12-7")
          end

          it "should run apt-get remove with the package name and options if specified" do
            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y --force-yes remove irssi",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @new_resource.options("--force-yes")

            @provider.remove_package("irssi", "0.8.12-7")
          end
        end

        describe "when purging a package" do
          it "should run apt-get purge with the package name" do
            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y purge irssi",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @provider.purge_package("irssi", "0.8.12-7")
          end

          it "should run apt-get purge with the package name and options if specified" do
            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y --force-yes purge irssi",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @new_resource.options("--force-yes")

            @provider.purge_package("irssi", "0.8.12-7")
          end
        end

        describe "when preseeding a package" do
          before(:each) do
            allow(@provider).to receive(:get_preseed_file).and_return("/tmp/irssi-0.8.12-7.seed")
          end

          it "should get the full path to the preseed response file" do
            file = "/tmp/irssi-0.8.12-7.seed"

            expect(@provider).to receive(:shell_out!).with(
              "debconf-set-selections /tmp/irssi-0.8.12-7.seed",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )

            @provider.preseed_package(file)
          end

          it "should run debconf-set-selections on the preseed file if it has changed" do
            expect(@provider).to receive(:shell_out!).with(
              "debconf-set-selections /tmp/irssi-0.8.12-7.seed",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            file = @provider.get_preseed_file("irssi", "0.8.12-7")
            @provider.preseed_package(file)
          end

          it "should not run debconf-set-selections if the preseed file has not changed" do
            allow(@provider).to receive(:check_all_packages_state)
            @current_resource.version "0.8.11"
            @new_resource.response_file "/tmp/file"
            allow(@provider).to receive(:get_preseed_file).and_return(false)
            expect(@provider).not_to receive(:shell_out!)
            @provider.run_action(:reconfig)
          end
        end

        describe "when reconfiguring a package" do
          it "should run dpkg-reconfigure package" do
            expect(@provider).to receive(:shell_out!).with(
              "dpkg-reconfigure irssi",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @provider.reconfig_package("irssi", "0.8.12-7")
          end
        end

        describe "when installing a virtual package" do
          it "should install the package without specifying a version" do
            @provider.is_virtual_package["libmysqlclient-dev"] = true
            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y install libmysqlclient-dev",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @provider.install_package("libmysqlclient-dev", "not_a_real_version")
          end
        end

        describe "when installing multiple packages" do
          it "can install a virtual package followed by a non-virtual package" do
            # https://github.com/chef/chef/issues/2914
            @provider.is_virtual_package["libmysqlclient-dev"] = true
            @provider.is_virtual_package["irssi"] = false
            expect(@provider).to receive(:shell_out!).with(
              "apt-get -q -y install libmysqlclient-dev irssi=0.8.12-7",
              :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil },
              :timeout => @timeout,
            )
            @provider.install_package(["libmysqlclient-dev", "irssi"], ["not_a_real_version", "0.8.12-7"])
          end
        end
      end
    end
  end
end