summaryrefslogtreecommitdiffstats
path: root/spec/unit/provider/confine/false_spec.rb
blob: 6ff5cc133bfee0b4b3e2c88790542f777fde9af1 (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
#!/usr/bin/env ruby

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

require 'puppet/provider/confine/false'

describe Puppet::Provider::Confine::False do
    it "should be named :false" do
        Puppet::Provider::Confine::False.name.should == :false
    end

    it "should require a value" do
        lambda { Puppet::Provider::Confine.new() }.should raise_error(ArgumentError)
    end

    describe "when testing values" do
        before { @confine = Puppet::Provider::Confine::False.new("foo") }

        it "should use the 'pass?' method to test validity" do
            @confine = Puppet::Provider::Confine::False.new("foo")
            @confine.label = "eh"
            @confine.expects(:pass?).with("foo")
            @confine.valid?
        end

        it "should return true if the value is false" do
            @confine.pass?(false).should be_true
        end

        it "should return false if the value is not false" do
            @confine.pass?("else").should be_false
        end

        it "should produce a message that a value is true" do
            @confine = Puppet::Provider::Confine::False.new("foo")
            @confine.message("eh").should be_include("true")
        end
    end

    it "should be able to produce a summary with the number of incorrectly true values" do
        confine = Puppet::Provider::Confine::False.new %w{one two three four}
        confine.expects(:pass?).times(4).returns(true).returns(false).returns(true).returns(false)
        confine.summary.should == 2
    end

    it "should summarize multiple instances by summing their summaries" do
        c1 = mock '1', :summary => 1
        c2 = mock '2', :summary => 2
        c3 = mock '3', :summary => 3

        Puppet::Provider::Confine::False.summarize([c1, c2, c3]).should == 6
    end
end