forked from thoughtbot/shoulda-matchers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
set_session_matcher.rb
163 lines (154 loc) · 4.39 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
require 'forwardable'
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
# RSpec.describe PostsController, type: :controller 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
#
# # Minitest (Shoulda)
# 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
# RSpec.describe PostsController, type: :controller do
# describe 'GET #index' do
# before { get :index }
#
# it { should set_session[:foo] }
# it { should_not set_session[:bar] }
# end
# end
#
# # Minitest (Shoulda)
# 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
# RSpec.describe PostsController, type: :controller 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
#
# # Minitest (Shoulda)
# 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
SetSessionMatcher.new.in_context(self)
end
# @private
class SetSessionMatcher
extend Forwardable
def_delegators :underlying_matcher,
:description,
:matches?,
:failure_message,
:failure_message_when_negated
alias_method \
:failure_message_for_should,
:failure_message
alias_method \
:failure_message_for_should_not,
:failure_message_when_negated
def initialize
store = SessionStore.new
@underlying_matcher = SetSessionOrFlashMatcher.new(store)
end
def in_context(context)
underlying_matcher.in_context(context)
self
end
def [](key)
underlying_matcher[key]
self
end
def to(expected_value = nil, &block)
underlying_matcher.to(expected_value, &block)
self
end
protected
attr_reader :underlying_matcher
end
end
end
end