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
|
#!/usr/bin/env ruby
#
# Created by Luke Kanies on 2007-11-1.
# Copyright (c) 2006. All rights reserved.
require File.dirname(__FILE__) + '/../spec_helper'
require 'puppet/relationship'
describe Puppet::Relationship do
before do
@edge = Puppet::Relationship.new(:a, :b)
end
it "should have a :source attribute" do
@edge.should respond_to(:source)
end
it "should have a :target attribute" do
@edge.should respond_to(:target)
end
it "should have a :callback attribute" do
@edge.callback = :foo
@edge.callback.should == :foo
end
it "should have an :event attribute" do
@edge.event = :NONE
@edge.event.should == :NONE
end
it "should require a callback if a non-NONE event is specified" do
proc { @edge.event = :something }.should raise_error(ArgumentError)
end
it "should have a :label attribute" do
@edge.should respond_to(:label)
end
it "should provide a :ref method that describes the edge" do
@edge = Puppet::Relationship.new("a", "b")
@edge.ref.should == "a => b"
end
it "should be able to produce a label as a hash with its event and callback" do
@edge.callback = :foo
@edge.event = :bar
@edge.label.should == {:callback => :foo, :event => :bar}
end
it "should work if nil options are provided" do
lambda { Puppet::Relationship.new("a", "b", nil) }.should_not raise_error
end
end
describe Puppet::Relationship, " when initializing" do
before do
@edge = Puppet::Relationship.new(:a, :b)
end
it "should use the first argument as the source" do
@edge.source.should == :a
end
it "should use the second argument as the target" do
@edge.target.should == :b
end
it "should set the rest of the arguments as the event and callback" do
@edge = Puppet::Relationship.new(:a, :b, :callback => :foo, :event => :bar)
@edge.callback.should == :foo
@edge.event.should == :bar
end
end
describe Puppet::Relationship, " when matching edges with no specified event" do
before do
@edge = Puppet::Relationship.new(:a, :b)
end
it "should not match :NONE" do
@edge.should_not be_match(:NONE)
end
it "should not match :ALL_EVENTS" do
@edge.should_not be_match(:NONE)
end
it "should not match any other events" do
@edge.should_not be_match(:whatever)
end
end
describe Puppet::Relationship, " when matching edges with :NONE as the event" do
before do
@edge = Puppet::Relationship.new(:a, :b, :event => :NONE)
end
it "should not match :NONE" do
@edge.should_not be_match(:NONE)
end
it "should not match :ALL_EVENTS" do
@edge.should_not be_match(:ALL_EVENTS)
end
it "should not match other events" do
@edge.should_not be_match(:yayness)
end
end
describe Puppet::Relationship, " when matching edges with :ALL as the event" do
before do
@edge = Puppet::Relationship.new(:a, :b, :event => :ALL_EVENTS, :callback => :whatever)
end
it "should not match :NONE" do
@edge.should_not be_match(:NONE)
end
it "should match :ALL_EVENTS" do
@edge.should be_match(:ALLEVENTS)
end
it "should match all other events" do
@edge.should be_match(:foo)
end
end
describe Puppet::Relationship, " when matching edges with a non-standard event" do
before do
@edge = Puppet::Relationship.new(:a, :b, :event => :random, :callback => :whatever)
end
it "should not match :NONE" do
@edge.should_not be_match(:NONE)
end
it "should not match :ALL_EVENTS" do
@edge.should_not be_match(:ALL_EVENTS)
end
it "should match events with the same name" do
@edge.should be_match(:random)
end
end
|