To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / ba / bae5f43e87eacd9d199692aa578d1d741f75b33e.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (7.47 KB)
| 1 | 1296:038ba2d95de8 | Chris | # Redmine - project management software |
|---|---|---|---|
| 2 | # Copyright (C) 2006-2012 Jean-Philippe Lang |
||
| 3 | # |
||
| 4 | # This program is free software; you can redistribute it and/or |
||
| 5 | # modify it under the terms of the GNU General Public License |
||
| 6 | # as published by the Free Software Foundation; either version 2 |
||
| 7 | # of the License, or (at your option) any later version. |
||
| 8 | # |
||
| 9 | # This program is distributed in the hope that it will be useful, |
||
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 12 | # GNU General Public License for more details. |
||
| 13 | # |
||
| 14 | # You should have received a copy of the GNU General Public License |
||
| 15 | # along with this program; if not, write to the Free Software |
||
| 16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||
| 17 | |||
| 18 | require File.expand_path('../../test_helper', __FILE__)
|
||
| 19 | require 'trackers_controller' |
||
| 20 | |||
| 21 | # Re-raise errors caught by the controller. |
||
| 22 | class TrackersController; def rescue_action(e) raise e end; end |
||
| 23 | |||
| 24 | class TrackersControllerTest < ActionController::TestCase |
||
| 25 | fixtures :trackers, :projects, :projects_trackers, :users, :issues, :custom_fields |
||
| 26 | |||
| 27 | def setup |
||
| 28 | @controller = TrackersController.new |
||
| 29 | @request = ActionController::TestRequest.new |
||
| 30 | @response = ActionController::TestResponse.new |
||
| 31 | User.current = nil |
||
| 32 | @request.session[:user_id] = 1 # admin |
||
| 33 | end |
||
| 34 | |||
| 35 | def test_index |
||
| 36 | get :index |
||
| 37 | assert_response :success |
||
| 38 | assert_template 'index' |
||
| 39 | end |
||
| 40 | |||
| 41 | def test_index_by_anonymous_should_redirect_to_login_form |
||
| 42 | @request.session[:user_id] = nil |
||
| 43 | get :index |
||
| 44 | assert_redirected_to '/login?back_url=http%3A%2F%2Ftest.host%2Ftrackers' |
||
| 45 | end |
||
| 46 | |||
| 47 | def test_index_by_user_should_respond_with_406 |
||
| 48 | @request.session[:user_id] = 2 |
||
| 49 | get :index |
||
| 50 | assert_response 406 |
||
| 51 | end |
||
| 52 | |||
| 53 | def test_new |
||
| 54 | get :new |
||
| 55 | assert_response :success |
||
| 56 | assert_template 'new' |
||
| 57 | end |
||
| 58 | |||
| 59 | def test_create |
||
| 60 | assert_difference 'Tracker.count' do |
||
| 61 | post :create, :tracker => { :name => 'New tracker', :project_ids => ['1', '', ''], :custom_field_ids => ['1', '6', ''] }
|
||
| 62 | end |
||
| 63 | assert_redirected_to :action => 'index' |
||
| 64 | tracker = Tracker.first(:order => 'id DESC') |
||
| 65 | assert_equal 'New tracker', tracker.name |
||
| 66 | assert_equal [1], tracker.project_ids.sort |
||
| 67 | assert_equal Tracker::CORE_FIELDS, tracker.core_fields |
||
| 68 | assert_equal [1, 6], tracker.custom_field_ids.sort |
||
| 69 | assert_equal 0, tracker.workflow_rules.count |
||
| 70 | end |
||
| 71 | |||
| 72 | def create_with_disabled_core_fields |
||
| 73 | assert_difference 'Tracker.count' do |
||
| 74 | post :create, :tracker => { :name => 'New tracker', :core_fields => ['assigned_to_id', 'fixed_version_id', ''] }
|
||
| 75 | end |
||
| 76 | assert_redirected_to :action => 'index' |
||
| 77 | tracker = Tracker.first(:order => 'id DESC') |
||
| 78 | assert_equal 'New tracker', tracker.name |
||
| 79 | assert_equal %w(assigned_to_id fixed_version_id), tracker.core_fields |
||
| 80 | end |
||
| 81 | |||
| 82 | def test_create_new_with_workflow_copy |
||
| 83 | assert_difference 'Tracker.count' do |
||
| 84 | post :create, :tracker => { :name => 'New tracker' }, :copy_workflow_from => 1
|
||
| 85 | end |
||
| 86 | assert_redirected_to :action => 'index' |
||
| 87 | tracker = Tracker.find_by_name('New tracker')
|
||
| 88 | assert_equal 0, tracker.projects.count |
||
| 89 | assert_equal Tracker.find(1).workflow_rules.count, tracker.workflow_rules.count |
||
| 90 | end |
||
| 91 | |||
| 92 | def test_create_with_failure |
||
| 93 | assert_no_difference 'Tracker.count' do |
||
| 94 | post :create, :tracker => { :name => '', :project_ids => ['1', '', ''], :custom_field_ids => ['1', '6', ''] }
|
||
| 95 | end |
||
| 96 | assert_response :success |
||
| 97 | assert_template 'new' |
||
| 98 | assert_error_tag :content => /name can't be blank/i |
||
| 99 | end |
||
| 100 | |||
| 101 | def test_edit |
||
| 102 | Tracker.find(1).project_ids = [1, 3] |
||
| 103 | |||
| 104 | get :edit, :id => 1 |
||
| 105 | assert_response :success |
||
| 106 | assert_template 'edit' |
||
| 107 | |||
| 108 | assert_tag :input, :attributes => { :name => 'tracker[project_ids][]',
|
||
| 109 | :value => '1', |
||
| 110 | :checked => 'checked' } |
||
| 111 | |||
| 112 | assert_tag :input, :attributes => { :name => 'tracker[project_ids][]',
|
||
| 113 | :value => '2', |
||
| 114 | :checked => nil } |
||
| 115 | |||
| 116 | assert_tag :input, :attributes => { :name => 'tracker[project_ids][]',
|
||
| 117 | :value => '', |
||
| 118 | :type => 'hidden'} |
||
| 119 | end |
||
| 120 | |||
| 121 | def test_edit_should_check_core_fields |
||
| 122 | tracker = Tracker.find(1) |
||
| 123 | tracker.core_fields = %w(assigned_to_id fixed_version_id) |
||
| 124 | tracker.save! |
||
| 125 | |||
| 126 | get :edit, :id => 1 |
||
| 127 | assert_response :success |
||
| 128 | assert_template 'edit' |
||
| 129 | |||
| 130 | assert_select 'input[name=?][value=assigned_to_id][checked=checked]', 'tracker[core_fields][]' |
||
| 131 | assert_select 'input[name=?][value=fixed_version_id][checked=checked]', 'tracker[core_fields][]' |
||
| 132 | |||
| 133 | assert_select 'input[name=?][value=category_id]', 'tracker[core_fields][]' |
||
| 134 | assert_select 'input[name=?][value=category_id][checked=checked]', 'tracker[core_fields][]', 0 |
||
| 135 | |||
| 136 | assert_select 'input[name=?][value=][type=hidden]', 'tracker[core_fields][]' |
||
| 137 | end |
||
| 138 | |||
| 139 | def test_update |
||
| 140 | put :update, :id => 1, :tracker => { :name => 'Renamed',
|
||
| 141 | :project_ids => ['1', '2', ''] } |
||
| 142 | assert_redirected_to :action => 'index' |
||
| 143 | assert_equal [1, 2], Tracker.find(1).project_ids.sort |
||
| 144 | end |
||
| 145 | |||
| 146 | def test_update_without_projects |
||
| 147 | put :update, :id => 1, :tracker => { :name => 'Renamed',
|
||
| 148 | :project_ids => [''] } |
||
| 149 | assert_redirected_to :action => 'index' |
||
| 150 | assert Tracker.find(1).project_ids.empty? |
||
| 151 | end |
||
| 152 | |||
| 153 | def test_update_without_core_fields |
||
| 154 | put :update, :id => 1, :tracker => { :name => 'Renamed', :core_fields => [''] }
|
||
| 155 | assert_redirected_to :action => 'index' |
||
| 156 | assert Tracker.find(1).core_fields.empty? |
||
| 157 | end |
||
| 158 | |||
| 159 | def test_update_with_failure |
||
| 160 | put :update, :id => 1, :tracker => { :name => '' }
|
||
| 161 | assert_response :success |
||
| 162 | assert_template 'edit' |
||
| 163 | assert_error_tag :content => /name can't be blank/i |
||
| 164 | end |
||
| 165 | |||
| 166 | def test_move_lower |
||
| 167 | tracker = Tracker.find_by_position(1) |
||
| 168 | put :update, :id => 1, :tracker => { :move_to => 'lower' }
|
||
| 169 | assert_equal 2, tracker.reload.position |
||
| 170 | end |
||
| 171 | |||
| 172 | def test_destroy |
||
| 173 | tracker = Tracker.create!(:name => 'Destroyable') |
||
| 174 | assert_difference 'Tracker.count', -1 do |
||
| 175 | delete :destroy, :id => tracker.id |
||
| 176 | end |
||
| 177 | assert_redirected_to :action => 'index' |
||
| 178 | assert_nil flash[:error] |
||
| 179 | end |
||
| 180 | |||
| 181 | def test_destroy_tracker_in_use |
||
| 182 | assert_no_difference 'Tracker.count' do |
||
| 183 | delete :destroy, :id => 1 |
||
| 184 | end |
||
| 185 | assert_redirected_to :action => 'index' |
||
| 186 | assert_not_nil flash[:error] |
||
| 187 | end |
||
| 188 | |||
| 189 | def test_get_fields |
||
| 190 | get :fields |
||
| 191 | assert_response :success |
||
| 192 | assert_template 'fields' |
||
| 193 | |||
| 194 | assert_select 'form' do |
||
| 195 | assert_select 'input[type=checkbox][name=?][value=assigned_to_id]', 'trackers[1][core_fields][]' |
||
| 196 | assert_select 'input[type=checkbox][name=?][value=2]', 'trackers[1][custom_field_ids][]' |
||
| 197 | |||
| 198 | assert_select 'input[type=hidden][name=?][value=]', 'trackers[1][core_fields][]' |
||
| 199 | assert_select 'input[type=hidden][name=?][value=]', 'trackers[1][custom_field_ids][]' |
||
| 200 | end |
||
| 201 | end |
||
| 202 | |||
| 203 | def test_post_fields |
||
| 204 | post :fields, :trackers => {
|
||
| 205 | '1' => {'core_fields' => ['assigned_to_id', 'due_date', ''], 'custom_field_ids' => ['1', '2']},
|
||
| 206 | '2' => {'core_fields' => [''], 'custom_field_ids' => ['']}
|
||
| 207 | } |
||
| 208 | assert_redirected_to '/trackers/fields' |
||
| 209 | |||
| 210 | tracker = Tracker.find(1) |
||
| 211 | assert_equal %w(assigned_to_id due_date), tracker.core_fields |
||
| 212 | assert_equal [1, 2], tracker.custom_field_ids.sort |
||
| 213 | |||
| 214 | tracker = Tracker.find(2) |
||
| 215 | assert_equal [], tracker.core_fields |
||
| 216 | assert_equal [], tracker.custom_field_ids.sort |
||
| 217 | end |
||
| 218 | end |