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
|
# encoding: utf-8
#--
# Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#++
require File.dirname(__FILE__) + '/../test_helper'
class KeysControllerTest < ActionController::TestCase
should_render_in_global_context
def setup
@user = users(:johan)
@request.env["HTTPS"] = "on"
SshKey.any_instance.stubs(:valid_key_using_ssh_keygen?).returns(true)
end
without_ssl_context do
context "GET :index" do
setup do
login_as :johan
get :index
end
should_redirect_to_ssl
end
context "GET :new" do
setup do
login_as :johan
get :new
end
should_redirect_to_ssl
end
context "POST :create" do
setup do
login_as :johan
post :create
end
should_redirect_to_ssl
end
context "GET :show" do
setup do
login_as :johan
get :show
end
should_redirect_to_ssl
end
context "DELETE :destroy" do
setup do
login_as :johan
delete :destroy
end
should_redirect_to_ssl
end
end
context "index" do
setup do
login_as :johan
end
should "requires login" do
session[:user_id] = nil
get :index, :user_id => @user.to_param
assert_response :redirect
assert_redirected_to(new_sessions_path)
end
should "require current_user" do
login_as :moe
get :index, :user_id => @user.to_param
assert_response :redirect
assert_redirected_to user_path(users(:moe))
end
should "GET account/keys is successful" do
get :index, :user_id => @user.to_param
assert_response :success
end
should "scopes to the current_users keys" do
get :index, :user_id => @user.to_param
assert_equal users(:johan).ssh_keys, assigns(:ssh_keys)
end
end
context "index.xml" do
setup do
authorize_as :johan
end
should "requires login" do
authorize_as(nil)
get :index, :format => "xml", :user_id => @user.to_param
assert_response 401
end
should "require current_user" do
login_as :moe
get :index, :format => "xml", :user_id => @user.to_param
assert_response :redirect
assert_redirected_to user_path(users(:moe))
end
should "GET account/keys is successful" do
get :index, :format => "xml", :user_id => @user.to_param
assert_response :success
end
should "scopes to the current_users keys" do
get :index, :format => "xml", :user_id => @user.to_param
assert_equal users(:johan).ssh_keys.to_xml, @response.body
end
end
context "new" do
setup do
login_as :johan
end
should " require login" do
session[:user_id] = nil
get :new
assert_redirected_to (new_sessions_path)
end
should "require current_user" do
login_as :moe
get :new, :user_id => @user.to_param
assert_response :redirect
assert_redirected_to user_path(users(:moe))
end
should "GET account/keys is successful" do
get :new, :user_id => @user.to_param
assert_response :success
end
should "scopes to the current_user" do
get :new, :user_id => @user.to_param
assert_equal users(:johan).id, assigns(:ssh_key).user_id
end
end
module KeyStubs
def valid_key
<<-EOS
ssh-rsa bXljYWtkZHlpemltd21vY2NqdGJnaHN2bXFjdG9zbXplaGlpZnZ0a3VyZWFz
c2dkanB4aXNxamxieGVib3l6Z3hmb2ZxZW15Y2FrZGR5aXppbXdtb2NjanRi
Z2hzdm1xY3Rvc216ZWhpaWZ2dGt1cmVhc3NnZGpweGlzcWpsYnhlYm95emd4
Zm9mcWU= foo@example.com
EOS
end
def invalid_key
"ooger booger wooger@burger"
end
end
context "create" do
include KeyStubs
setup do
login_as :johan
end
should " require login" do
session[:user_id] = nil
post :create, :ssh_key => {:key => valid_key}
assert_redirected_to(new_sessions_path)
end
should "require current_user" do
login_as :moe
post :create, :ssh_key => {:key => valid_key}, :user_id => @user.to_param
assert_response :redirect
assert_redirected_to user_path(users(:moe))
end
should "scopes to the current_user" do
post :create, :ssh_key => {:key => valid_key}, :user_id => @user.to_param
assert_equal users(:johan).id, assigns(:ssh_key).user_id
end
should "POST account/keys/create is successful" do
post :create, :ssh_key => {:key => valid_key}, :user_id => @user.to_param
assert_response :redirect
end
end
context "create.xml" do
include KeyStubs
setup do
authorize_as :johan
end
should " require login" do
authorize_as(nil)
post :create, :ssh_key => {:key => valid_key}, :format => "xml", :user_id => @user.to_param
assert_response 401
end
should "require current_user" do
login_as :moe
post :create, :ssh_key => {:key => valid_key}, :user_id => @user.to_param, :format => "xml"
assert_response :redirect
assert_redirected_to user_path(users(:moe))
end
should "scopes to the current_user" do
post :create, :ssh_key => {:key => valid_key}, :format => "xml", :user_id => @user.to_param
assert_equal users(:johan).id, assigns(:ssh_key).user_id
end
should "POST account/keys/create is successful" do
post :create, :ssh_key => {:key => valid_key}, :format => "xml", :user_id => @user.to_param
assert_response 201
end
end
end
|