summaryrefslogtreecommitdiff
path: root/spec/unit/provider/package/pacman_spec.rb
blob: 2e2a3f7763126fa0b2982133dc47a03c3f38899e (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
#
# Author:: Jan Zimmek (<jan.zimmek@web.de>)
# Copyright:: Copyright 2010-2016, Jan Zimmek
# 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"

def create_provider_for(name)
  @new_resource = Chef::Resource::Package.new(name)
  provider = Chef::Provider::Package::Pacman.new(@new_resource, @run_context)
  allow(provider).to receive(:shell_out_compacted).and_return(@status)
  provider
end

RSpec.shared_examples "current_resource" do |pkg, version, candidate|
  let(:current_resource) { @provider.load_current_resource }
  before(:each) do
    @provider = create_provider_for(pkg)
  end

  it "sets current_resource name" do
    expect(current_resource.package_name).to eql(pkg)
  end

  it "sets current_resource version" do
    expect(current_resource.version).to eql(version)
  end

  it "sets candidate version" do
    current_resource
    expect(@provider.candidate_version).to eql(candidate)
  end
end

describe Chef::Provider::Package::Pacman do
  before(:each) do
    @node = Chef::Node.new
    @events = Chef::EventDispatch::Dispatcher.new
    @run_context = Chef::RunContext.new(@node, {}, @events)
    @pacman_conf = <<~PACMAN_CONF
      [options]
      HoldPkg      = pacman glibc
      Architecture = auto

      [customrepo]
      Server = https://my.custom.repo

      [core]
      Include = /etc/pacman.d/mirrorlist

      [extra]
      Include = /etc/pacman.d/mirrorlist

      [community]
      Include = /etc/pacman.d/mirrorlist
    PACMAN_CONF

    allow(::File).to receive(:exist?).with("/etc/pacman.conf").and_return(true)
    allow(::File).to receive(:read).with("/etc/pacman.conf").and_return(@pacman_conf)

    pacman_out = <<~PACMAN_OUT
      extra nano 3.450-1
      extra emacs 0.12.0-1 [installed]
      core sed 3.234-2 [installed: 3.234-1]
    PACMAN_OUT
    @status = double(stdout: pacman_out, exitstatus: 0)

  end

  describe "loading the current resource" do

    describe "for an existing and installed but upgradable package" do
      include_examples "current_resource", ["sed"], ["3.234-1"], ["3.234-2"]
    end

    describe "for an existing and installed package" do
      include_examples "current_resource", ["emacs"], ["0.12.0-1"], ["0.12.0-1"]
    end

    describe "for an existing non installed package" do
      include_examples "current_resource", ["nano"], [nil], ["3.450-1"]
    end

    describe "for a non existing and an upgradable package" do
      include_examples "current_resource", %w{nano sed}, [nil, "3.234-1"], ["3.450-1", "3.234-2"]
    end

    describe "for a non existing package" do
      let(:current_resource) { @provider.load_current_resource }
      before(:each) do
        @provider = create_provider_for("vim")
      end

      it "raises an error" do
        expect { current_resource }.to raise_error(Chef::Exceptions::Package)
      end
    end

  end
end