annotate .svn/pristine/af/afff6ebb421c46aa468f585b7d8909132a409f4d.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
rev   line source
Chris@1295 1 # Redmine - project management software
Chris@1295 2 # Copyright (C) 2006-2013 Jean-Philippe Lang
Chris@1295 3 #
Chris@1295 4 # This program is free software; you can redistribute it and/or
Chris@1295 5 # modify it under the terms of the GNU General Public License
Chris@1295 6 # as published by the Free Software Foundation; either version 2
Chris@1295 7 # of the License, or (at your option) any later version.
Chris@1295 8 #
Chris@1295 9 # This program is distributed in the hope that it will be useful,
Chris@1295 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@1295 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@1295 12 # GNU General Public License for more details.
Chris@1295 13 #
Chris@1295 14 # You should have received a copy of the GNU General Public License
Chris@1295 15 # along with this program; if not, write to the Free Software
Chris@1295 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@1295 17
Chris@1295 18 require File.expand_path('../../test_helper', __FILE__)
Chris@1295 19
Chris@1295 20 class MyControllerTest < ActionController::TestCase
Chris@1295 21 fixtures :users, :user_preferences, :roles, :projects, :members, :member_roles,
Chris@1295 22 :issues, :issue_statuses, :trackers, :enumerations, :custom_fields, :auth_sources
Chris@1295 23
Chris@1295 24 def setup
Chris@1295 25 @request.session[:user_id] = 2
Chris@1295 26 end
Chris@1295 27
Chris@1295 28 def test_index
Chris@1295 29 get :index
Chris@1295 30 assert_response :success
Chris@1295 31 assert_template 'page'
Chris@1295 32 end
Chris@1295 33
Chris@1295 34 def test_page
Chris@1295 35 get :page
Chris@1295 36 assert_response :success
Chris@1295 37 assert_template 'page'
Chris@1295 38 end
Chris@1295 39
Chris@1295 40 def test_page_with_timelog_block
Chris@1295 41 preferences = User.find(2).pref
Chris@1295 42 preferences[:my_page_layout] = {'top' => ['timelog']}
Chris@1295 43 preferences.save!
Chris@1295 44 TimeEntry.create!(:user => User.find(2), :spent_on => Date.yesterday, :issue_id => 1, :hours => 2.5, :activity_id => 10)
Chris@1295 45
Chris@1295 46 get :page
Chris@1295 47 assert_response :success
Chris@1295 48 assert_select 'tr.time-entry' do
Chris@1295 49 assert_select 'td.subject a[href=/issues/1]'
Chris@1295 50 assert_select 'td.hours', :text => '2.50'
Chris@1295 51 end
Chris@1295 52 end
Chris@1295 53
Chris@1295 54 def test_page_with_all_blocks
Chris@1295 55 blocks = MyController::BLOCKS.keys
Chris@1295 56 preferences = User.find(2).pref
Chris@1295 57 preferences[:my_page_layout] = {'top' => blocks}
Chris@1295 58 preferences.save!
Chris@1295 59
Chris@1295 60 get :page
Chris@1295 61 assert_response :success
Chris@1295 62 assert_select 'div.mypage-box', blocks.size
Chris@1295 63 end
Chris@1295 64
Chris@1295 65 def test_my_account_should_show_editable_custom_fields
Chris@1295 66 get :account
Chris@1295 67 assert_response :success
Chris@1295 68 assert_template 'account'
Chris@1295 69 assert_equal User.find(2), assigns(:user)
Chris@1295 70
Chris@1295 71 assert_tag :input, :attributes => { :name => 'user[custom_field_values][4]'}
Chris@1295 72 end
Chris@1295 73
Chris@1295 74 def test_my_account_should_not_show_non_editable_custom_fields
Chris@1295 75 UserCustomField.find(4).update_attribute :editable, false
Chris@1295 76
Chris@1295 77 get :account
Chris@1295 78 assert_response :success
Chris@1295 79 assert_template 'account'
Chris@1295 80 assert_equal User.find(2), assigns(:user)
Chris@1295 81
Chris@1295 82 assert_no_tag :input, :attributes => { :name => 'user[custom_field_values][4]'}
Chris@1295 83 end
Chris@1295 84
Chris@1295 85 def test_update_account
Chris@1295 86 post :account,
Chris@1295 87 :user => {
Chris@1295 88 :firstname => "Joe",
Chris@1295 89 :login => "root",
Chris@1295 90 :admin => 1,
Chris@1295 91 :group_ids => ['10'],
Chris@1295 92 :custom_field_values => {"4" => "0100562500"}
Chris@1295 93 }
Chris@1295 94
Chris@1295 95 assert_redirected_to '/my/account'
Chris@1295 96 user = User.find(2)
Chris@1295 97 assert_equal user, assigns(:user)
Chris@1295 98 assert_equal "Joe", user.firstname
Chris@1295 99 assert_equal "jsmith", user.login
Chris@1295 100 assert_equal "0100562500", user.custom_value_for(4).value
Chris@1295 101 # ignored
Chris@1295 102 assert !user.admin?
Chris@1295 103 assert user.groups.empty?
Chris@1295 104 end
Chris@1295 105
Chris@1295 106 def test_my_account_should_show_destroy_link
Chris@1295 107 get :account
Chris@1295 108 assert_select 'a[href=/my/account/destroy]'
Chris@1295 109 end
Chris@1295 110
Chris@1295 111 def test_get_destroy_should_display_the_destroy_confirmation
Chris@1295 112 get :destroy
Chris@1295 113 assert_response :success
Chris@1295 114 assert_template 'destroy'
Chris@1295 115 assert_select 'form[action=/my/account/destroy]' do
Chris@1295 116 assert_select 'input[name=confirm]'
Chris@1295 117 end
Chris@1295 118 end
Chris@1295 119
Chris@1295 120 def test_post_destroy_without_confirmation_should_not_destroy_account
Chris@1295 121 assert_no_difference 'User.count' do
Chris@1295 122 post :destroy
Chris@1295 123 end
Chris@1295 124 assert_response :success
Chris@1295 125 assert_template 'destroy'
Chris@1295 126 end
Chris@1295 127
Chris@1295 128 def test_post_destroy_without_confirmation_should_destroy_account
Chris@1295 129 assert_difference 'User.count', -1 do
Chris@1295 130 post :destroy, :confirm => '1'
Chris@1295 131 end
Chris@1295 132 assert_redirected_to '/'
Chris@1295 133 assert_match /deleted/i, flash[:notice]
Chris@1295 134 end
Chris@1295 135
Chris@1295 136 def test_post_destroy_with_unsubscribe_not_allowed_should_not_destroy_account
Chris@1295 137 User.any_instance.stubs(:own_account_deletable?).returns(false)
Chris@1295 138
Chris@1295 139 assert_no_difference 'User.count' do
Chris@1295 140 post :destroy, :confirm => '1'
Chris@1295 141 end
Chris@1295 142 assert_redirected_to '/my/account'
Chris@1295 143 end
Chris@1295 144
Chris@1295 145 def test_change_password
Chris@1295 146 get :password
Chris@1295 147 assert_response :success
Chris@1295 148 assert_template 'password'
Chris@1295 149
Chris@1295 150 # non matching password confirmation
Chris@1295 151 post :password, :password => 'jsmith',
Chris@1295 152 :new_password => 'secret123',
Chris@1295 153 :new_password_confirmation => 'secret1234'
Chris@1295 154 assert_response :success
Chris@1295 155 assert_template 'password'
Chris@1295 156 assert_error_tag :content => /Password doesn&#x27;t match confirmation/
Chris@1295 157
Chris@1295 158 # wrong password
Chris@1295 159 post :password, :password => 'wrongpassword',
Chris@1295 160 :new_password => 'secret123',
Chris@1295 161 :new_password_confirmation => 'secret123'
Chris@1295 162 assert_response :success
Chris@1295 163 assert_template 'password'
Chris@1295 164 assert_equal 'Wrong password', flash[:error]
Chris@1295 165
Chris@1295 166 # good password
Chris@1295 167 post :password, :password => 'jsmith',
Chris@1295 168 :new_password => 'secret123',
Chris@1295 169 :new_password_confirmation => 'secret123'
Chris@1295 170 assert_redirected_to '/my/account'
Chris@1295 171 assert User.try_to_login('jsmith', 'secret123')
Chris@1295 172 end
Chris@1295 173
Chris@1295 174 def test_change_password_should_redirect_if_user_cannot_change_its_password
Chris@1295 175 User.find(2).update_attribute(:auth_source_id, 1)
Chris@1295 176
Chris@1295 177 get :password
Chris@1295 178 assert_not_nil flash[:error]
Chris@1295 179 assert_redirected_to '/my/account'
Chris@1295 180 end
Chris@1295 181
Chris@1295 182 def test_page_layout
Chris@1295 183 get :page_layout
Chris@1295 184 assert_response :success
Chris@1295 185 assert_template 'page_layout'
Chris@1295 186 end
Chris@1295 187
Chris@1295 188 def test_add_block
Chris@1295 189 post :add_block, :block => 'issuesreportedbyme'
Chris@1295 190 assert_redirected_to '/my/page_layout'
Chris@1295 191 assert User.find(2).pref[:my_page_layout]['top'].include?('issuesreportedbyme')
Chris@1295 192 end
Chris@1295 193
Chris@1295 194 def test_add_invalid_block_should_redirect
Chris@1295 195 post :add_block, :block => 'invalid'
Chris@1295 196 assert_redirected_to '/my/page_layout'
Chris@1295 197 end
Chris@1295 198
Chris@1295 199 def test_remove_block
Chris@1295 200 post :remove_block, :block => 'issuesassignedtome'
Chris@1295 201 assert_redirected_to '/my/page_layout'
Chris@1295 202 assert !User.find(2).pref[:my_page_layout].values.flatten.include?('issuesassignedtome')
Chris@1295 203 end
Chris@1295 204
Chris@1295 205 def test_order_blocks
Chris@1295 206 xhr :post, :order_blocks, :group => 'left', 'blocks' => ['documents', 'calendar', 'latestnews']
Chris@1295 207 assert_response :success
Chris@1295 208 assert_equal ['documents', 'calendar', 'latestnews'], User.find(2).pref[:my_page_layout]['left']
Chris@1295 209 end
Chris@1295 210
Chris@1295 211 def test_reset_rss_key_with_existing_key
Chris@1295 212 @previous_token_value = User.find(2).rss_key # Will generate one if it's missing
Chris@1295 213 post :reset_rss_key
Chris@1295 214
Chris@1295 215 assert_not_equal @previous_token_value, User.find(2).rss_key
Chris@1295 216 assert User.find(2).rss_token
Chris@1295 217 assert_match /reset/, flash[:notice]
Chris@1295 218 assert_redirected_to '/my/account'
Chris@1295 219 end
Chris@1295 220
Chris@1295 221 def test_reset_rss_key_without_existing_key
Chris@1295 222 assert_nil User.find(2).rss_token
Chris@1295 223 post :reset_rss_key
Chris@1295 224
Chris@1295 225 assert User.find(2).rss_token
Chris@1295 226 assert_match /reset/, flash[:notice]
Chris@1295 227 assert_redirected_to '/my/account'
Chris@1295 228 end
Chris@1295 229
Chris@1295 230 def test_reset_api_key_with_existing_key
Chris@1295 231 @previous_token_value = User.find(2).api_key # Will generate one if it's missing
Chris@1295 232 post :reset_api_key
Chris@1295 233
Chris@1295 234 assert_not_equal @previous_token_value, User.find(2).api_key
Chris@1295 235 assert User.find(2).api_token
Chris@1295 236 assert_match /reset/, flash[:notice]
Chris@1295 237 assert_redirected_to '/my/account'
Chris@1295 238 end
Chris@1295 239
Chris@1295 240 def test_reset_api_key_without_existing_key
Chris@1295 241 assert_nil User.find(2).api_token
Chris@1295 242 post :reset_api_key
Chris@1295 243
Chris@1295 244 assert User.find(2).api_token
Chris@1295 245 assert_match /reset/, flash[:notice]
Chris@1295 246 assert_redirected_to '/my/account'
Chris@1295 247 end
Chris@1295 248 end