forked from thoughtbot/shoulda-matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset_session_matcher.rb
244 lines (219 loc) · 6.18 KB
/
set_session_matcher.rb
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
module Shoulda
module Matchers
module ActionController
# The `set_session` matcher is used to make assertions about the
# `session` hash.
#
# class PostsController < ApplicationController
# def index
# session[:foo] = 'A candy bar'
# end
#
# def destroy
# end
# end
#
# # RSpec
# describe PostsController do
# describe 'GET #index' do
# before { get :index }
#
# it { should set_session }
# end
#
# describe 'DELETE #destroy' do
# before { delete :destroy }
#
# it { should_not set_session }
# end
# end
#
# # Test::Unit
# class PostsControllerTest < ActionController::TestCase
# context 'GET #index' do
# setup { get :index }
#
# should set_session
# end
#
# context 'DELETE #destroy' do
# setup { delete :destroy }
#
# should_not set_session
# end
# end
#
# #### Qualifiers
#
# ##### []
#
# Use `[]` to narrow the scope of the matcher to a particular key.
#
# class PostsController < ApplicationController
# def index
# session[:foo] = 'A candy bar'
# end
# end
#
# # RSpec
# describe PostsController do
# describe 'GET #index' do
# before { get :index }
#
# it { should set_session[:foo] }
# it { should_not set_session[:bar] }
# end
# end
#
# # Test::Unit
# class PostsControllerTest < ActionController::TestCase
# context 'GET #index' do
# setup { get :show }
#
# should set_session[:foo]
# should_not set_session[:bar]
# end
# end
#
# ##### to
#
# Use `to` to assert that some key was set to a particular value, or that
# some key matches a particular regex.
#
# class PostsController < ApplicationController
# def index
# session[:foo] = 'A candy bar'
# end
# end
#
# # RSpec
# describe PostsController do
# describe 'GET #index' do
# before { get :index }
#
# it { should set_session.to('A candy bar') }
# it { should set_session.to(/bar/) }
# it { should set_session[:foo].to('bar') }
# it { should_not set_session[:foo].to('something else') }
# end
# end
#
# # Test::Unit
# class PostsControllerTest < ActionController::TestCase
# context 'GET #index' do
# setup { get :show }
#
# should set_session.to('A candy bar')
# should set_session.to(/bar/)
# should set_session[:foo].to('bar')
# should_not set_session[:foo].to('something else')
# end
# end
#
# @return [SetSessionMatcher]
#
def set_session(key = nil)
SetSessionMatcher.new(key)
end
# @private
class SetSessionMatcher
def initialize(key)
if key
Shoulda::Matchers.warn <<EOT
Passing a key to set_session is deprecated.
Please use the hash syntax instead (e.g., `set_session[:foo]`, not `set_session(:foo)`).
EOT
self[key]
end
@value_block = nil
end
def [](key)
@key = key.to_s
self
end
def to(value = nil, &block)
@value = value
@value_block = block
self
end
def matches?(controller)
@controller = controller
if @value_block
@value = @context.instance_eval(&@value_block)
end
if nil_value_expected_but_actual_value_unset?
Shoulda::Matchers.warn <<EOT
Using `should set_session[...].to(nil)` to assert that a variable is unset is deprecated.
Please use `should_not set_session[...]` instead.
EOT
end
if key_specified? && value_specified?
@value === session[@key]
elsif key_specified?
session.key?(@key)
elsif value_specified?
session.values.any? { |value| @value === value }
else
session_present?
end
end
def failure_message
"Expected #{expectation}, but #{result}"
end
alias failure_message_for_should failure_message
def failure_message_when_negated
"Didn't expect #{expectation}, but it was"
end
alias failure_message_for_should_not failure_message_when_negated
def description
"should #{expectation}"
end
def in_context(context)
@context = context
self
end
private
def key_specified?
defined?(@key)
end
def value_specified?
defined?(@value)
end
def value_or_default_value
defined?(@value) && @value
end
def nil_value_expected_but_actual_value_unset?
value_specified? && @value.nil? && !session.key?(@key)
end
def session_present?
!session.empty?
end
def expectation
expectation = ""
if key_specified?
expectation << "session variable #{@key.inspect}"
else
expectation << "any session variable"
end
expectation << " to be"
if value_specified? && [email protected]?
expectation << " #{@value.inspect}"
else
expectation << " set"
end
expectation
end
def result
if session_present?
"the session was #{session.inspect}"
else
'no session variables were set'
end
end
def session
@controller.session
end
end
end
end
end