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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
#!/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
describe Puppet::Relationship, "when converting to json" do
confine "Missing 'json' library" => Puppet.features.json?
before do
@edge = Puppet::Relationship.new(:a, :b, :event => :random, :callback => :whatever)
end
def json_output_should
@edge.class.expects(:json_create).with { |hash| yield hash }
end
# LAK:NOTE For all of these tests, we convert back to the edge so we can
# trap the actual data structure then.
it "should set the 'json_class' to Puppet::Relationship" do
json_output_should { |hash| hash['json_class'] == "Puppet::Relationship" }
JSON.parse @edge.to_json
end
it "should store the stringified source as the source in the data" do
json_output_should { |hash| hash['data']['source'] == "a" }
JSON.parse @edge.to_json
end
it "should store the stringified target as the target in the data" do
json_output_should { |hash| hash['data']['target'] == "b" }
JSON.parse @edge.to_json
end
it "should store the jsonified event as the event in the data" do
@edge.event = :random
json_output_should { |hash| hash['data']['event'] == "random" }
JSON.parse @edge.to_json
end
it "should not store an event when none is set" do
@edge.event = nil
json_output_should { |hash| hash['data']['event'].nil? }
JSON.parse @edge.to_json
end
it "should store the jsonified callback as the callback in the data" do
@edge.callback = "whatever"
json_output_should { |hash| hash['data']['callback'] == "whatever" }
JSON.parse @edge.to_json
end
it "should not store a callback when none is set in the edge" do
@edge.callback = nil
json_output_should { |hash| hash['data']['callback'].nil? }
JSON.parse @edge.to_json
end
end
describe Puppet::Relationship, "when converting from json" do
confine "Missing 'json' library" => Puppet.features.json?
before do
@event = "random"
@callback = "whatever"
@data = {
"source" => "mysource",
"target" => "mytarget",
"event" => @event,
"callback" => @callback
}
@json = {
"json_class" => "Puppet::Relationship",
"data" => @data
}
end
def json_result_should
Puppet::Relationship.expects(:new).with { |*args| yield args }
end
# LAK:NOTE For all of these tests, we convert back to the edge so we can
# trap the actual data structure then.
it "should pass the source in as the first argument" do
Puppet::Relationship.from_json("source" => "mysource", "target" => "mytarget").source.should == "mysource"
end
it "should pass the target in as the second argument" do
Puppet::Relationship.from_json("source" => "mysource", "target" => "mytarget").target.should == "mytarget"
end
it "should pass the event as an argument if it's provided" do
Puppet::Relationship.from_json("source" => "mysource", "target" => "mytarget", "event" => "myevent", "callback" => "eh").event.should == "myevent"
end
it "should pass the callback as an argument if it's provided" do
Puppet::Relationship.from_json("source" => "mysource", "target" => "mytarget", "callback" => "mycallback").callback.should == "mycallback"
end
end
|