summaryrefslogtreecommitdiffstats
path: root/spec/unit/provider/package/zypper_spec.rb
blob: b7f3687c6a9763f827115b316c4f86e13e67476c (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
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../../../spec_helper'

provider_class = Puppet::Type.type(:package).provider(:zypper)

describe provider_class do
    before(:each) do
        # Create a mock resource
        @resource = stub 'resource'

        # A catch all; no parameters set
        @resource.stubs(:[]).returns(nil)

        # But set name and source
        @resource.stubs(:[]).with(:name).returns "mypackage"
        @resource.stubs(:[]).with(:ensure).returns :installed
        @resource.stubs(:command).with(:zypper).returns "/usr/bin/zypper"

        @provider = provider_class.new(@resource)
    end

    it "should have an install method" do
        @provider = provider_class.new
        @provider.should respond_to(:install)
    end

    it "should have a latest method" do
        @provider = provider_class.new
        @provider.should respond_to(:uninstall)
    end

    it "should have an update method" do
        @provider = provider_class.new
        @provider.should respond_to(:update)
    end

    it "should have a latest method" do
        @provider = provider_class.new
        @provider.should respond_to(:latest)
    end

    describe "when installing" do
        it "should use a command-line with versioned package'" do
            @resource.stubs(:should).with(:ensure).returns "1.2.3-4.5.6"
            @provider.expects(:zypper).with('--quiet', :install, '-l', '-y', 'mypackage-1.2.3-4.5.6')
            @provider.expects(:query).returns "mypackage 0 1.2.3 4.5.6 x86_64"
            @provider.install
        end

        it "should use a command-line without versioned package" do
            @resource.stubs(:should).with(:ensure).returns :latest
            @provider.expects(:zypper).with('--quiet', :install, '-l', '-y', 'mypackage')
            @provider.expects(:query).returns "mypackage 0 1.2.3 4.5.6 x86_64"
            @provider.install
        end
    end

    describe "when updating" do
        it "should call install method of instance" do
            @provider.expects(:install)
            @provider.update
        end
    end

    describe "when getting latest version" do
        it "should return a version string" do

            fake_data = "Loading repository data...
Reading installed packages...
S | Repository     | Name                  | Version         | Arch
--+----------------+-----------------------+-----------------+-------
v | SLES11-Updates | cups                  | 1.1.1           | x86_64
v | SLES11-Updates | mypackage             | 1.3.9h-8.20.1   | x86_64"

    @provider.expects(:zypper).with("list-updates").returns fake_data
    @provider.latest.should == "1.3.9h-8.20.1"
        end
    end

end