2009-01-29 17:22:56 +03:00
|
|
|
# Redmine - project management software
|
2013-01-12 13:29:31 +04:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2009-01-29 17:22:56 +03:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-08-25 05:44:16 +04:00
|
|
|
#
|
2009-01-29 17:22:56 +03:00
|
|
|
# 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 General Public License for more details.
|
2011-08-25 05:44:16 +04:00
|
|
|
#
|
2009-01-29 17:22:56 +03:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2010-12-13 02:24:34 +03:00
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
2009-01-29 17:22:56 +03:00
|
|
|
|
2009-09-13 21:14:35 +04:00
|
|
|
class TrackersControllerTest < ActionController::TestCase
|
2009-12-09 13:58:51 +03:00
|
|
|
fixtures :trackers, :projects, :projects_trackers, :users, :issues, :custom_fields
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-01-29 17:22:56 +03:00
|
|
|
def setup
|
|
|
|
User.current = nil
|
|
|
|
@request.session[:user_id] = 1 # admin
|
|
|
|
end
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-02-26 12:21:41 +03:00
|
|
|
def test_index
|
|
|
|
get :index
|
|
|
|
assert_response :success
|
2010-02-15 19:41:27 +03:00
|
|
|
assert_template 'index'
|
2009-02-26 12:21:41 +03:00
|
|
|
end
|
2011-11-20 18:17:43 +04:00
|
|
|
|
|
|
|
def test_index_by_anonymous_should_redirect_to_login_form
|
|
|
|
@request.session[:user_id] = nil
|
|
|
|
get :index
|
|
|
|
assert_redirected_to '/login?back_url=http%3A%2F%2Ftest.host%2Ftrackers'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_index_by_user_should_respond_with_406
|
|
|
|
@request.session[:user_id] = 2
|
|
|
|
get :index
|
|
|
|
assert_response 406
|
|
|
|
end
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2011-11-23 01:32:45 +04:00
|
|
|
def test_new
|
2009-02-26 12:21:41 +03:00
|
|
|
get :new
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'new'
|
|
|
|
end
|
|
|
|
|
2011-11-23 01:32:45 +04:00
|
|
|
def test_create
|
|
|
|
assert_difference 'Tracker.count' do
|
|
|
|
post :create, :tracker => { :name => 'New tracker', :project_ids => ['1', '', ''], :custom_field_ids => ['1', '6', ''] }
|
|
|
|
end
|
2010-02-15 19:41:27 +03:00
|
|
|
assert_redirected_to :action => 'index'
|
2011-11-23 01:32:45 +04:00
|
|
|
tracker = Tracker.first(:order => 'id DESC')
|
|
|
|
assert_equal 'New tracker', tracker.name
|
2009-02-26 12:21:41 +03:00
|
|
|
assert_equal [1], tracker.project_ids.sort
|
2012-07-05 16:20:07 +04:00
|
|
|
assert_equal Tracker::CORE_FIELDS, tracker.core_fields
|
2012-03-05 23:54:03 +04:00
|
|
|
assert_equal [1, 6], tracker.custom_field_ids.sort
|
2012-07-15 18:12:17 +04:00
|
|
|
assert_equal 0, tracker.workflow_rules.count
|
2009-02-26 12:21:41 +03:00
|
|
|
end
|
|
|
|
|
2012-07-05 16:20:07 +04:00
|
|
|
def create_with_disabled_core_fields
|
|
|
|
assert_difference 'Tracker.count' do
|
|
|
|
post :create, :tracker => { :name => 'New tracker', :core_fields => ['assigned_to_id', 'fixed_version_id', ''] }
|
|
|
|
end
|
|
|
|
assert_redirected_to :action => 'index'
|
|
|
|
tracker = Tracker.first(:order => 'id DESC')
|
|
|
|
assert_equal 'New tracker', tracker.name
|
|
|
|
assert_equal %w(assigned_to_id fixed_version_id), tracker.core_fields
|
|
|
|
end
|
|
|
|
|
2011-11-23 01:32:45 +04:00
|
|
|
def test_create_new_with_workflow_copy
|
|
|
|
assert_difference 'Tracker.count' do
|
|
|
|
post :create, :tracker => { :name => 'New tracker' }, :copy_workflow_from => 1
|
|
|
|
end
|
2010-02-15 19:41:27 +03:00
|
|
|
assert_redirected_to :action => 'index'
|
2009-02-26 12:21:41 +03:00
|
|
|
tracker = Tracker.find_by_name('New tracker')
|
|
|
|
assert_equal 0, tracker.projects.count
|
2012-07-15 18:12:17 +04:00
|
|
|
assert_equal Tracker.find(1).workflow_rules.count, tracker.workflow_rules.count
|
2009-02-26 12:21:41 +03:00
|
|
|
end
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2012-04-18 23:49:10 +04:00
|
|
|
def test_create_with_failure
|
2011-11-23 01:32:45 +04:00
|
|
|
assert_no_difference 'Tracker.count' do
|
|
|
|
post :create, :tracker => { :name => '', :project_ids => ['1', '', ''], :custom_field_ids => ['1', '6', ''] }
|
|
|
|
end
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'new'
|
2012-09-02 14:08:51 +04:00
|
|
|
assert_error_tag :content => /name can't be blank/i
|
2011-11-23 01:32:45 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_edit
|
2009-01-29 17:22:56 +03:00
|
|
|
Tracker.find(1).project_ids = [1, 3]
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-01-29 17:22:56 +03:00
|
|
|
get :edit, :id => 1
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'edit'
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-01-29 17:22:56 +03:00
|
|
|
assert_tag :input, :attributes => { :name => 'tracker[project_ids][]',
|
|
|
|
:value => '1',
|
|
|
|
:checked => 'checked' }
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-01-29 17:22:56 +03:00
|
|
|
assert_tag :input, :attributes => { :name => 'tracker[project_ids][]',
|
|
|
|
:value => '2',
|
|
|
|
:checked => nil }
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-01-29 17:22:56 +03:00
|
|
|
assert_tag :input, :attributes => { :name => 'tracker[project_ids][]',
|
|
|
|
:value => '',
|
|
|
|
:type => 'hidden'}
|
|
|
|
end
|
|
|
|
|
2012-07-05 16:20:07 +04:00
|
|
|
def test_edit_should_check_core_fields
|
|
|
|
tracker = Tracker.find(1)
|
|
|
|
tracker.core_fields = %w(assigned_to_id fixed_version_id)
|
|
|
|
tracker.save!
|
|
|
|
|
|
|
|
get :edit, :id => 1
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'edit'
|
|
|
|
|
|
|
|
assert_select 'input[name=?][value=assigned_to_id][checked=checked]', 'tracker[core_fields][]'
|
|
|
|
assert_select 'input[name=?][value=fixed_version_id][checked=checked]', 'tracker[core_fields][]'
|
|
|
|
|
|
|
|
assert_select 'input[name=?][value=category_id]', 'tracker[core_fields][]'
|
|
|
|
assert_select 'input[name=?][value=category_id][checked=checked]', 'tracker[core_fields][]', 0
|
|
|
|
|
|
|
|
assert_select 'input[name=?][value=][type=hidden]', 'tracker[core_fields][]'
|
|
|
|
end
|
|
|
|
|
2011-11-23 01:32:45 +04:00
|
|
|
def test_update
|
|
|
|
put :update, :id => 1, :tracker => { :name => 'Renamed',
|
2009-01-29 17:22:56 +03:00
|
|
|
:project_ids => ['1', '2', ''] }
|
2010-02-15 19:41:27 +03:00
|
|
|
assert_redirected_to :action => 'index'
|
2009-01-29 17:22:56 +03:00
|
|
|
assert_equal [1, 2], Tracker.find(1).project_ids.sort
|
|
|
|
end
|
|
|
|
|
2011-11-23 01:32:45 +04:00
|
|
|
def test_update_without_projects
|
|
|
|
put :update, :id => 1, :tracker => { :name => 'Renamed',
|
2009-01-29 17:22:56 +03:00
|
|
|
:project_ids => [''] }
|
2010-02-15 19:41:27 +03:00
|
|
|
assert_redirected_to :action => 'index'
|
2009-01-29 17:22:56 +03:00
|
|
|
assert Tracker.find(1).project_ids.empty?
|
|
|
|
end
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2012-07-05 16:20:07 +04:00
|
|
|
def test_update_without_core_fields
|
|
|
|
put :update, :id => 1, :tracker => { :name => 'Renamed', :core_fields => [''] }
|
|
|
|
assert_redirected_to :action => 'index'
|
|
|
|
assert Tracker.find(1).core_fields.empty?
|
|
|
|
end
|
|
|
|
|
2012-04-18 23:49:10 +04:00
|
|
|
def test_update_with_failure
|
|
|
|
put :update, :id => 1, :tracker => { :name => '' }
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'edit'
|
2012-09-02 14:08:51 +04:00
|
|
|
assert_error_tag :content => /name can't be blank/i
|
2012-04-18 23:49:10 +04:00
|
|
|
end
|
|
|
|
|
2009-02-26 12:21:41 +03:00
|
|
|
def test_move_lower
|
|
|
|
tracker = Tracker.find_by_position(1)
|
2011-11-23 01:32:45 +04:00
|
|
|
put :update, :id => 1, :tracker => { :move_to => 'lower' }
|
2009-02-26 12:21:41 +03:00
|
|
|
assert_equal 2, tracker.reload.position
|
|
|
|
end
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-02-26 12:21:41 +03:00
|
|
|
def test_destroy
|
|
|
|
tracker = Tracker.create!(:name => 'Destroyable')
|
|
|
|
assert_difference 'Tracker.count', -1 do
|
2011-11-23 01:32:45 +04:00
|
|
|
delete :destroy, :id => tracker.id
|
2009-02-26 12:21:41 +03:00
|
|
|
end
|
2010-02-15 19:41:27 +03:00
|
|
|
assert_redirected_to :action => 'index'
|
2009-02-26 12:21:41 +03:00
|
|
|
assert_nil flash[:error]
|
|
|
|
end
|
2011-08-25 05:44:16 +04:00
|
|
|
|
2009-02-26 12:21:41 +03:00
|
|
|
def test_destroy_tracker_in_use
|
|
|
|
assert_no_difference 'Tracker.count' do
|
2011-11-23 01:32:45 +04:00
|
|
|
delete :destroy, :id => 1
|
2009-02-26 12:21:41 +03:00
|
|
|
end
|
2010-02-15 19:41:27 +03:00
|
|
|
assert_redirected_to :action => 'index'
|
2009-02-26 12:21:41 +03:00
|
|
|
assert_not_nil flash[:error]
|
|
|
|
end
|
2012-09-02 20:55:16 +04:00
|
|
|
|
|
|
|
def test_get_fields
|
|
|
|
get :fields
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'fields'
|
|
|
|
|
|
|
|
assert_select 'form' do
|
|
|
|
assert_select 'input[type=checkbox][name=?][value=assigned_to_id]', 'trackers[1][core_fields][]'
|
|
|
|
assert_select 'input[type=checkbox][name=?][value=2]', 'trackers[1][custom_field_ids][]'
|
|
|
|
|
|
|
|
assert_select 'input[type=hidden][name=?][value=]', 'trackers[1][core_fields][]'
|
|
|
|
assert_select 'input[type=hidden][name=?][value=]', 'trackers[1][custom_field_ids][]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_post_fields
|
|
|
|
post :fields, :trackers => {
|
|
|
|
'1' => {'core_fields' => ['assigned_to_id', 'due_date', ''], 'custom_field_ids' => ['1', '2']},
|
|
|
|
'2' => {'core_fields' => [''], 'custom_field_ids' => ['']}
|
|
|
|
}
|
|
|
|
assert_redirected_to '/trackers/fields'
|
|
|
|
|
|
|
|
tracker = Tracker.find(1)
|
|
|
|
assert_equal %w(assigned_to_id due_date), tracker.core_fields
|
|
|
|
assert_equal [1, 2], tracker.custom_field_ids.sort
|
|
|
|
|
|
|
|
tracker = Tracker.find(2)
|
|
|
|
assert_equal [], tracker.core_fields
|
|
|
|
assert_equal [], tracker.custom_field_ids.sort
|
|
|
|
end
|
2009-01-29 17:22:56 +03:00
|
|
|
end
|