summaryrefslogtreecommitdiffstats
path: root/spec/unit/property/list.rb
blob: 854ab4874bbd0253da684a4918f2c2456088e7f2 (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
#!/usr/bin/env ruby

Dir.chdir(File.dirname(__FILE__)) { (s = lambda { |f| File.exist?(f) ? require(f) : Dir.chdir("..") { s.call(f) } }).call("spec/spec_helper.rb") }

require 'puppet/property/list'

list_class = Puppet::Property::List

describe list_class do

    it "should be a subclass of Property" do
        list_class.superclass.must == Puppet::Property
    end

    describe "as an instance" do
        before do
            # Wow that's a messy interface to the resource.
            list_class.initvars
            @resource = stub 'resource', :[]= => nil, :property => nil
            @property = list_class.new(:resource => @resource)
        end

        it "should have a , as default delimiter" do
            @property.delimiter.should == ","
        end

        it "should have a :membership as default membership" do
            @property.membership.should == :membership
        end

        it "should return the same value passed into should_to_s" do
            @property.should_to_s("foo") == "foo"
        end

        it "should return the passed in array values joined with the delimiter from is_to_s" do
            @property.is_to_s(["foo","bar"]).should == "foo,bar"
        end

        it "should be able to correctly convert ':absent' to a string" do
            @property.is_to_s(:absent).should == "absent"
        end

        describe "when adding should to current" do
            it "should add the arrays when current is an array" do
                @property.add_should_with_current(["foo"], ["bar"]).should == ["foo", "bar"]
            end

            it "should return should if current is not a array" do
                @property.add_should_with_current(["foo"], :absent).should == ["foo"]
            end

            it "should return only the uniq elements" do
                @property.add_should_with_current(["foo", "bar"], ["foo", "baz"]).should == ["foo", "bar", "baz"]
            end
        end

        describe "when calling inclusive?" do
            it "should use the membership method to look up on the @resource" do
                @property.expects(:membership).returns(:membership)
                @resource.expects(:[]).with(:membership)
                @property.inclusive?
            end

            it "should return true when @resource[membership] == inclusive" do
                @property.stubs(:membership).returns(:membership)
                @resource.stubs(:[]).with(:membership).returns(:inclusive)
                @property.inclusive?.must == true
            end

            it "should return false when @resource[membership] != inclusive" do
                @property.stubs(:membership).returns(:membership)
                @resource.stubs(:[]).with(:membership).returns(:minimum)
                @property.inclusive?.must == false
            end
        end

        describe "when calling should" do
            it "should return nil if @should is nil" do
                @property.should.must == nil
            end

            it "should return the sorted values of @should as a string if inclusive" do
                @property.should = ["foo", "bar"]
                @property.expects(:inclusive?).returns(true)
                @property.should.must == "bar,foo"
            end

            it "should return the uniq sorted values of @should + retrieve as a string if !inclusive" do
                @property.should = ["foo", "bar"]
                @property.expects(:inclusive?).returns(false)
                @property.expects(:retrieve).returns(["foo","baz"])
                @property.should.must == "bar,baz,foo"
            end
        end

        describe "when calling retrieve" do
            before do
                @provider = mock("provider")
                @property.stubs(:provider).returns(@provider)
            end

            it "should send 'name' to the provider" do
                @provider.expects(:send).with(:group)
                @property.expects(:name).returns(:group)
                @property.retrieve
            end

            it "should return an array with the provider returned info" do
                @provider.stubs(:send).with(:group).returns("foo,bar,baz")
                @property.stubs(:name).returns(:group)
                @property.retrieve == ["foo", "bar", "baz"]
            end

            it "should return :absent when the provider returns :absent" do
                @provider.stubs(:send).with(:group).returns(:absent)
                @property.stubs(:name).returns(:group)
                @property.retrieve == :absent
            end
        end

        describe "when calling insync?" do
            it "should return true unless @should is defined and not nil" do
                @property.insync?("foo") == true
            end

            it "should return true unless the passed in values is not nil" do
                @property.should = "foo"
                @property.insync?(nil) == true
            end

            it "should call prepare_is_for_comparison with value passed in and should" do
                @property.should = "foo"
                @property.expects(:prepare_is_for_comparison).with("bar")
                @property.expects(:should)
                @property.insync?("bar")
            end

            it "should return true if prepared value == should value" do
                @property.should = "bar,foo"
                @property.expects(:inclusive?).returns(true)
                @property.insync?(["bar","foo"]).must == true
            end

            it "should return false if prepared value != should value" do
                @property.should = "bar,baz,foo"
                @property.expects(:inclusive?).returns(true)
                @property.insync?(["bar","foo"]).must == false
            end
        end

        describe "when calling dearrayify" do
            it "should sort and join the array with 'delimiter'" do
                array = mock "array"
                array.expects(:sort).returns(array)
                array.expects(:join).with(@property.delimiter)
                @property.dearrayify(array)
            end
        end
    end
end