##// END OF EJS Templates
use escaped "can't" constant at AuthSourcesControllerTest...
Toshi MARUYAMA -
r12526:afa18701fdf3
parent child
Show More
@@ -1,173 +1,173
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2014 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.expand_path('../../test_helper', __FILE__)
19 19
20 20 class AuthSourcesControllerTest < ActionController::TestCase
21 21 fixtures :users, :auth_sources
22 22
23 23 def setup
24 24 @request.session[:user_id] = 1
25 25 end
26 26
27 27 def test_index
28 28 get :index
29 29
30 30 assert_response :success
31 31 assert_template 'index'
32 32 assert_not_nil assigns(:auth_sources)
33 33 end
34 34
35 35 def test_new
36 36 get :new
37 37
38 38 assert_response :success
39 39 assert_template 'new'
40 40
41 41 source = assigns(:auth_source)
42 42 assert_equal AuthSourceLdap, source.class
43 43 assert source.new_record?
44 44
45 45 assert_select 'form#auth_source_form' do
46 46 assert_select 'input[name=type][value=AuthSourceLdap]'
47 47 assert_select 'input[name=?]', 'auth_source[host]'
48 48 end
49 49 end
50 50
51 51 def test_new_with_invalid_type_should_respond_with_404
52 52 get :new, :type => 'foo'
53 53 assert_response 404
54 54 end
55 55
56 56 def test_create
57 57 assert_difference 'AuthSourceLdap.count' do
58 58 post :create, :type => 'AuthSourceLdap', :auth_source => {:name => 'Test', :host => '127.0.0.1', :port => '389', :attr_login => 'cn'}
59 59 assert_redirected_to '/auth_sources'
60 60 end
61 61
62 62 source = AuthSourceLdap.order('id DESC').first
63 63 assert_equal 'Test', source.name
64 64 assert_equal '127.0.0.1', source.host
65 65 assert_equal 389, source.port
66 66 assert_equal 'cn', source.attr_login
67 67 end
68 68
69 69 def test_create_with_failure
70 70 assert_no_difference 'AuthSourceLdap.count' do
71 71 post :create, :type => 'AuthSourceLdap',
72 72 :auth_source => {:name => 'Test', :host => '',
73 73 :port => '389', :attr_login => 'cn'}
74 74 assert_response :success
75 75 assert_template 'new'
76 76 end
77 assert_error_tag :content => /host can&#x27;t be blank/i
77 assert_error_tag :content => /host #{ESCAPED_CANT} be blank/i
78 78 end
79 79
80 80 def test_edit
81 81 get :edit, :id => 1
82 82
83 83 assert_response :success
84 84 assert_template 'edit'
85 85
86 86 assert_select 'form#auth_source_form' do
87 87 assert_select 'input[name=?]', 'auth_source[host]'
88 88 end
89 89 end
90 90
91 91 def test_edit_should_not_contain_password
92 92 AuthSource.find(1).update_column :account_password, 'secret'
93 93
94 94 get :edit, :id => 1
95 95 assert_response :success
96 96 assert_select 'input[value=secret]', 0
97 97 assert_select 'input[name=dummy_password][value=?]', /x+/
98 98 end
99 99
100 100 def test_edit_invalid_should_respond_with_404
101 101 get :edit, :id => 99
102 102 assert_response 404
103 103 end
104 104
105 105 def test_update
106 106 put :update, :id => 1,
107 107 :auth_source => {:name => 'Renamed', :host => '192.168.0.10',
108 108 :port => '389', :attr_login => 'uid'}
109 109 assert_redirected_to '/auth_sources'
110 110 source = AuthSourceLdap.find(1)
111 111 assert_equal 'Renamed', source.name
112 112 assert_equal '192.168.0.10', source.host
113 113 end
114 114
115 115 def test_update_with_failure
116 116 put :update, :id => 1,
117 117 :auth_source => {:name => 'Renamed', :host => '',
118 118 :port => '389', :attr_login => 'uid'}
119 119 assert_response :success
120 120 assert_template 'edit'
121 assert_error_tag :content => /host can&#x27;t be blank/i
121 assert_error_tag :content => /host #{ESCAPED_CANT} be blank/i
122 122 end
123 123
124 124 def test_destroy
125 125 assert_difference 'AuthSourceLdap.count', -1 do
126 126 delete :destroy, :id => 1
127 127 assert_redirected_to '/auth_sources'
128 128 end
129 129 end
130 130
131 131 def test_destroy_auth_source_in_use
132 132 User.find(2).update_attribute :auth_source_id, 1
133 133
134 134 assert_no_difference 'AuthSourceLdap.count' do
135 135 delete :destroy, :id => 1
136 136 assert_redirected_to '/auth_sources'
137 137 end
138 138 end
139 139
140 140 def test_test_connection
141 141 AuthSourceLdap.any_instance.stubs(:test_connection).returns(true)
142 142
143 143 get :test_connection, :id => 1
144 144 assert_redirected_to '/auth_sources'
145 145 assert_not_nil flash[:notice]
146 146 assert_match /successful/i, flash[:notice]
147 147 end
148 148
149 149 def test_test_connection_with_failure
150 150 AuthSourceLdap.any_instance.stubs(:initialize_ldap_con).raises(Net::LDAP::LdapError.new("Something went wrong"))
151 151
152 152 get :test_connection, :id => 1
153 153 assert_redirected_to '/auth_sources'
154 154 assert_not_nil flash[:error]
155 155 assert_include 'Something went wrong', flash[:error]
156 156 end
157 157
158 158 def test_autocomplete_for_new_user
159 159 AuthSource.expects(:search).with('foo').returns([
160 160 {:login => 'foo1', :firstname => 'John', :lastname => 'Smith', :mail => 'foo1@example.net', :auth_source_id => 1},
161 161 {:login => 'Smith', :firstname => 'John', :lastname => 'Doe', :mail => 'foo2@example.net', :auth_source_id => 1}
162 162 ])
163 163
164 164 get :autocomplete_for_new_user, :term => 'foo'
165 165 assert_response :success
166 166 assert_equal 'application/json', response.content_type
167 167 json = ActiveSupport::JSON.decode(response.body)
168 168 assert_kind_of Array, json
169 169 assert_equal 2, json.size
170 170 assert_equal 'foo1', json.first['value']
171 171 assert_equal 'foo1 (John Smith)', json.first['label']
172 172 end
173 173 end
General Comments 0
You need to be logged in to leave comments. Login now