\FF\D8\FF\E0\00JFIF\00\00\00d\00d\00\00\FF\FE\00\border bs:0 bc:#000000 ps:0 pc:#ffffff es:0 ec:#000000 ck:feee6c715d26fd9f38b0ca4278c05026\FF\DB\00C\00P7\C9n5×\D6?\BDê\9Ds\EBp\9F[`8m\B7)o\B5\E8\E6I\99\FE3]]A2\BA\8Cw\D6E\93\\DEv\C8\009\F2\F1NI?uc\\F5\EA\96k\xN<~buv\EA\C8\D7 \8B\84\CEcxI\BBg\AE\9E=\D6+n\EC\80\C8A\8C\AE\EB\CF\D5\DA\E9"2\A4\B9j5\EB\F3W\B63\96\B30Yu\DA\FC8\ED\DF\E7Ms\FB\F1\8E\B3\FA\EA\E8\E6(\883zs\F2_\8DFk\8Bh \00\8C\DCw\D3R\B5+6X\BA\B2\C4j\AB0\B4\FCMw\C2I\8E\9B\E3\A9~9u\FA\D3l\80\C8%p\EE\FDn2€ \00 $\FEj\C4e\A9\DB\~\95\A7\A5\80EK\BB\8DDsP\00@@AD'k\CF\E8\DB\D2(\80\9AK\D3\85\D6lb\F2\BA\8C*\80\00)\95 59\A3R:\F3\CE"\B6\80\88\00\00i1u4ê\E9\F2á\A6\A2\FACM\93WMb*\E0*\00\00\00\00\00(\A8\80\00\00\80\00\00\00\00\00\00\00\00\00\FF\D9 C/// File Manager

File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/chef-16.3.45/spec/unit/provider/package/

Viewing File: apt_spec.rb

#
# Author:: Adam Jacob (<adam@chef.io>)
# Copyright:: Copyright (c) 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
  let(:logger) { double("Mixlib::Log::Child").as_null_object }
  # 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

  let(:node) { Chef::Node.new }
  let(:events) { Chef::EventDispatch::Dispatcher.new }

  before(:each) do
    @run_context = Chef::RunContext.new(node, {}, events)
    allow(@run_context).to receive(:logger).and_return(logger)
    @new_resource = Chef::Resource::AptPackage.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_compacted!).with(
        "apt-cache", "policy", @new_resource.package_name,
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        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 eql([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_compacted!).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

    # it is the superclasses responsibility to throw most exceptions
    it "if the package does not exist in the cache sets installed + candidate version to nil" do
      @new_resource.package_name("conic-smarms")
      policy_out = <<~POLICY_STDOUT
        N: Unable to locate package conic-smarms
      POLICY_STDOUT
      policy = double(stdout: policy_out, exitstatus: 0)
      expect(@provider).to receive(:shell_out_compacted!).with(
        "apt-cache", "policy", "conic-smarms",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        timeout: @timeout
      ).and_return(policy)
      showpkg_out = <<~SHOWPKG_STDOUT
        N: Unable to locate package conic-smarms
      SHOWPKG_STDOUT
      showpkg = double(stdout: showpkg_out, exitstatus: 0)
      expect(@provider).to receive(:shell_out_compacted!).with(
        "apt-cache", "showpkg", "conic-smarms",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        timeout: @timeout
      ).and_return(showpkg)
      @provider.load_current_resource
    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_compacted!).with(
        "apt-cache", "policy", "libmysqlclient15-dev",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        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_compacted!).with(
        "apt-cache", "showpkg", "libmysqlclient15-dev",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        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_compacted!).with(
        "apt-cache", "policy", "libmysqlclient-dev",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        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_compacted!).with(
        "apt-cache", "policy", "mp3-decoder",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        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_compacted!).with(
        "apt-cache", "showpkg", "mp3-decoder",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        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)

      @new_resource.default_release("lenny-backports")
      @new_resource.provider(nil)
      expect(@provider).to receive(:shell_out_compacted!).with(
        "apt-cache", "-o", "APT::Default-Release=lenny-backports", "policy", "irssi",
        env: { "DEBIAN_FRONTEND" => "noninteractive" },
        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_compacted!).with(
        "apt-cache", "policy", @new_resource.package_name,
        env: { "DEBIAN_FRONTEND" => "noninteractive" } ,
        timeout: @timeout
      ).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 = Chef::Resource::AptPackage.new("irssi", @run_context)
      @provider.current_resource = @current_resource
      allow(@provider).to receive(:package_data).and_return({
        "irssi" => {
          virtual: false,
          candidate_version: "0.8.12-7",
          installed_version: nil,
        },
        "libmysqlclient15-dev" => {
          virtual: true,
          candidate_version: nil,
          installed_version: nil,
        },
      })
    end

    def ubuntu1804downgrade_stubs
      so = instance_double(Mixlib::ShellOut, stdout: "apt 1.6~beta1 (amd64)\notherstuff\n")
      so2 = instance_double(Mixlib::ShellOut, error?: false)
      allow(@provider).to receive(:shell_out).with("apt-get --version").and_return(so)
      allow(@provider).to receive(:shell_out).with("dpkg", "--compare-versions", "1.6~beta1", "gt", "1.1.0").and_return(so2)
    end

    def ubuntu1404downgrade_stubs
      so = instance_double(Mixlib::ShellOut, stdout: "apt 1.0.1ubuntu2 for amd64 compiled on Dec  8 2016 16:23:38\notherstuff\n")
      so2 = instance_double(Mixlib::ShellOut, error?: true)
      allow(@provider).to receive(:shell_out).with("apt-get --version").and_return(so)
      allow(@provider).to receive(:shell_out).with("dpkg", "--compare-versions", "1.0.1ubuntu2", "gt", "1.1.0").and_return(so2)
      allow(@provider).to receive(:shell_out).with("dpkg", "--compare-versions", "1.0.1ubuntu2", "eq", "1.1.0").and_return(so2)
    end

    describe "install_package" do
      before(:each) do
        ubuntu1804downgrade_stubs
      end

      it "should run apt-get install with the package name and version" do
        expect(@provider).to receive(:shell_out_compacted!). with(
          "apt-get", "-q", "-y", "--allow-downgrades", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "apt-get", "-q", "-y", "--allow-downgrades", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "--force-yes", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "apt-get", "-q", "-y", "--allow-downgrades", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "-o", "APT::Default-Release=lenny-backports", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )

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

      it "should run apt-get install with the package name and quotes options if specified" do
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "--allow-downgrades", "--force-yes", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confnew", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @new_resource.options('--force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew"')
        @provider.install_package(["irssi"], ["0.8.12-7"])
      end
    end

    describe "install_package with old apt-get" do
      # tests apt-get on 1404 that does not support --allow-downgrades
      before(:each) do
        ubuntu1404downgrade_stubs
      end

      it "should run apt-get install with the package name and version" do
        expect(@provider).to receive(:shell_out_compacted!). with(
          "apt-get", "-q", "-y", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "apt-get", "-q", "-y", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "--force-yes", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "apt-get", "-q", "-y", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "-o", "APT::Default-Release=lenny-backports", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )

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

      it "should run apt-get install with the package name and quotes options if specified" do
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "--force-yes", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confnew", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @new_resource.options('--force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew"')
        @provider.install_package(["irssi"], ["0.8.12-7"])
      end
    end

    describe Chef::Resource::AptPackage, "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 Chef::Resource::AptPackage, "remove_package" do

      it "should run apt-get remove with the package name" do
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "remove", "irssi",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "apt-get", "-q", "-y", "--force-yes", "remove", "irssi",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "apt-get", "-q", "-y", "purge", "irssi",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "apt-get", "-q", "-y", "--force-yes", "purge", "irssi",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @new_resource.options("--force-yes")

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

    describe "when given a response file" do
      it_behaves_like "given a response file" do
        before do
          @provider = Chef::Provider::Package::Apt.new(new_resource, run_context)
        end
        let(:new_resource) do
          new_resource = Chef::Resource::AptPackage.new("irssi", run_context)
          new_resource.response_file("irssi.response")
          new_resource.cookbook_name = "irssi"
          new_resource
        end
        let(:path) { "preseed/irssi" }
        let(:tmp_path) { "/tmp/preseed/irssi" }
        let(:package_name) { "irssi" }
        let(:package_version) { "1.0.5-1" }
        let(:response) { "irssi.response" }
        let(:tmp_preseed_path) { "/tmp/preseed/irssi/irssi-1.0.5-1.seed" }
        let(:preseed_path) { "/preseed--irssi--irssi-1.0.5-1.seed" }
      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_compacted!).with(
          "debconf-set-selections", "/tmp/irssi-0.8.12-7.seed",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!).with(
          "debconf-set-selections", "/tmp/irssi-0.8.12-7.seed",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          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_compacted!)
        @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_compacted!).with(
          "dpkg-reconfigure", "irssi",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.reconfig_package("irssi")
      end
    end

    describe "when locking a package" do
      it "should run apt-mark hold package" do
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-mark", "hold", "irssi",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.lock_package("irssi", "0.8.12-7")
      end
      it "should not lock if the package is already locked" do
        allow(@provider).to receive(:shell_out_compacted!).with(
          "apt-mark", "showhold", timeout: 900
        ).and_return(instance_double(
          Mixlib::ShellOut, stdout: "irssi"
        ))
        expect(logger).to receive(:trace).with("#{@provider.new_resource} is already locked")

        @provider.action_lock
      end
    end

    describe "when unlocking a package" do
      it "should run apt-mark unhold package" do
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-mark", "unhold", "irssi",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.unlock_package("irssi", "0.8.12-7")
      end
      it "should not unlock if the package is already unlocked" do
        allow(@provider).to receive(:shell_out_compacted!).with(
          "apt-mark", "showhold", timeout: 900
        ).and_return(instance_double(
          Mixlib::ShellOut, stdout: ""
        ))
        expect(logger).to receive(:trace).with("#{@provider.new_resource} is already unlocked")

        @provider.action_unlock
      end
    end

    describe "when installing a virtual package" do
      it "should install the package without specifying a version" do
        ubuntu1804downgrade_stubs
        @provider.package_data["libmysqlclient15-dev"][:virtual] = true
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "--allow-downgrades", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "install", "libmysqlclient15-dev",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.install_package(["libmysqlclient15-dev"], ["not_a_real_version"])
      end
    end

    describe "when removing a virtual package" do
      it "should remove the resolved name instead of the virtual package name" do
        expect(@provider).to receive(:resolve_virtual_package_name).with("libmysqlclient15-dev").and_return("libmysqlclient-dev")
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "remove", "libmysqlclient-dev",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.remove_package(["libmysqlclient15-dev"], ["not_a_real_version"])
      end
    end

    describe "when purging a virtual package" do
      it "should purge the resolved name instead of the virtual package name" do
        expect(@provider).to receive(:resolve_virtual_package_name).with("libmysqlclient15-dev").and_return("libmysqlclient-dev")
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "purge", "libmysqlclient-dev",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.purge_package(["libmysqlclient15-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
        ubuntu1804downgrade_stubs
        # https://github.com/chef/chef/issues/2914
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "--allow-downgrades", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "install", "libmysqlclient15-dev", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.install_package(%w{libmysqlclient15-dev irssi}, ["not_a_real_version", "0.8.12-7"])
      end
    end

    describe "#action_install" do
      it "should run dpkg to compare versions if an existing version is installed" do
        allow(@provider).to receive(:get_current_versions).and_return("1.4.0")
        allow(@new_resource).to receive(:allow_downgrade).and_return(false)
        expect(@provider).to receive(:shell_out_compacted).with(
          "dpkg", "--compare-versions", "1.4.0", "gt", "0.8.12-7", timeout: 900
        ).and_return(double(error?: false))
        @provider.run_action(:upgrade)
      end

      it "should install the package if the installed version is older" do
        ubuntu1804downgrade_stubs
        expect(@provider).to receive(:version_compare).with("1.6~beta1", "1.1.0").and_return(1)
        allow(@provider).to receive(:get_current_versions).and_return("0.4.0")
        allow(@new_resource).to receive(:allow_downgrade).and_return(false)
        expect(@provider).to receive(:version_compare).with("0.4.0", any_args).and_return(-1)
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.run_action(:upgrade)
      end

      it "should not compare versions if an existing version is not installed" do
        ubuntu1804downgrade_stubs
        expect(@provider).to receive(:version_compare).with("1.6~beta1", "1.1.0").and_return(1)
        allow(@provider).to receive(:get_current_versions).and_return(nil)
        allow(@new_resource).to receive(:allow_downgrade).and_return(false)
        expect(@provider).not_to receive(:version_compare).with("0.4.0", any_args)
        expect(@provider).to receive(:shell_out_compacted!).with(
          "apt-get", "-q", "-y", "-o", "Dpkg::Options::=--force-confdef", "-o", "Dpkg::Options::=--force-confold", "install", "irssi=0.8.12-7",
          env: { "DEBIAN_FRONTEND" => "noninteractive" },
          timeout: @timeout
        )
        @provider.run_action(:upgrade)
      end
    end
  end
end