2009-09-20 18:06:57 +04:00
|
|
|
# Redmine - project management software
|
2012-05-05 16:56:53 +04:00
|
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
2009-09-20 18:06:57 +04: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-30 19:55:09 +04:00
|
|
|
#
|
2009-09-20 18:06:57 +04: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-30 19:55:09 +04:00
|
|
|
#
|
2009-09-20 18:06:57 +04: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-09-20 18:06:57 +04:00
|
|
|
require 'custom_fields_controller'
|
|
|
|
|
|
|
|
# Re-raise errors caught by the controller.
|
|
|
|
class CustomFieldsController; def rescue_action(e) raise e end; end
|
|
|
|
|
|
|
|
class CustomFieldsControllerTest < ActionController::TestCase
|
2011-11-28 01:11:10 +04:00
|
|
|
fixtures :custom_fields, :custom_values, :trackers, :users
|
2011-08-30 19:55:09 +04:00
|
|
|
|
2009-09-20 18:06:57 +04:00
|
|
|
def setup
|
|
|
|
@controller = CustomFieldsController.new
|
|
|
|
@request = ActionController::TestRequest.new
|
|
|
|
@response = ActionController::TestResponse.new
|
|
|
|
@request.session[:user_id] = 1
|
|
|
|
end
|
2011-08-30 19:55:09 +04:00
|
|
|
|
2011-11-28 01:11:10 +04:00
|
|
|
def test_index
|
|
|
|
get :index
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'index'
|
|
|
|
end
|
|
|
|
|
2012-04-18 23:25:54 +04:00
|
|
|
def test_new
|
|
|
|
custom_field_classes.each do |klass|
|
|
|
|
get :new, :type => klass.name
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'new'
|
|
|
|
assert_kind_of klass, assigns(:custom_field)
|
|
|
|
assert_tag :select, :attributes => {:name => 'custom_field[field_format]'}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-10 02:58:30 +04:00
|
|
|
def test_new_issue_custom_field
|
2011-04-01 17:44:58 +04:00
|
|
|
get :new, :type => 'IssueCustomField'
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'new'
|
2011-12-10 02:58:30 +04:00
|
|
|
assert_tag :input, :attributes => {:name => 'custom_field[name]'}
|
2011-04-01 17:44:58 +04:00
|
|
|
assert_tag :select,
|
|
|
|
:attributes => {:name => 'custom_field[field_format]'},
|
|
|
|
:child => {
|
|
|
|
:tag => 'option',
|
|
|
|
:attributes => {:value => 'user'},
|
|
|
|
:content => 'User'
|
|
|
|
}
|
|
|
|
assert_tag :select,
|
|
|
|
:attributes => {:name => 'custom_field[field_format]'},
|
|
|
|
:child => {
|
|
|
|
:tag => 'option',
|
|
|
|
:attributes => {:value => 'version'},
|
|
|
|
:content => 'Version'
|
|
|
|
}
|
2011-12-10 02:58:30 +04:00
|
|
|
assert_tag :input, :attributes => {:name => 'type', :value => 'IssueCustomField'}
|
2011-04-01 17:44:58 +04:00
|
|
|
end
|
2011-08-30 19:55:09 +04:00
|
|
|
|
2011-12-10 02:58:30 +04:00
|
|
|
def test_new_with_invalid_custom_field_class_should_render_404
|
2011-04-01 17:44:58 +04:00
|
|
|
get :new, :type => 'UnknownCustomField'
|
2011-12-10 02:58:30 +04:00
|
|
|
assert_response 404
|
2011-04-01 17:44:58 +04:00
|
|
|
end
|
2011-08-30 19:55:09 +04:00
|
|
|
|
2011-12-10 02:58:30 +04:00
|
|
|
def test_create_list_custom_field
|
2009-09-20 18:06:57 +04:00
|
|
|
assert_difference 'CustomField.count' do
|
2011-12-10 02:58:30 +04:00
|
|
|
post :create, :type => "IssueCustomField",
|
2009-09-20 18:06:57 +04:00
|
|
|
:custom_field => {:name => "test_post_new_list",
|
|
|
|
:default_value => "",
|
|
|
|
:min_length => "0",
|
|
|
|
:searchable => "0",
|
|
|
|
:regexp => "",
|
|
|
|
:is_for_all => "1",
|
|
|
|
:possible_values => "0.1\n0.2\n",
|
|
|
|
:max_length => "0",
|
|
|
|
:is_filter => "0",
|
|
|
|
:is_required =>"0",
|
|
|
|
:field_format => "list",
|
|
|
|
:tracker_ids => ["1", ""]}
|
2011-08-30 19:55:09 +04:00
|
|
|
end
|
2009-09-20 18:06:57 +04:00
|
|
|
assert_redirected_to '/custom_fields?tab=IssueCustomField'
|
|
|
|
field = IssueCustomField.find_by_name('test_post_new_list')
|
|
|
|
assert_not_nil field
|
|
|
|
assert_equal ["0.1", "0.2"], field.possible_values
|
|
|
|
assert_equal 1, field.trackers.size
|
|
|
|
end
|
2011-11-28 01:11:10 +04:00
|
|
|
|
2011-12-10 02:58:30 +04:00
|
|
|
def test_create_with_failure
|
|
|
|
assert_no_difference 'CustomField.count' do
|
|
|
|
post :create, :type => "IssueCustomField", :custom_field => {:name => ''}
|
|
|
|
end
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'new'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_edit
|
2011-11-28 01:11:10 +04:00
|
|
|
get :edit, :id => 1
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'edit'
|
|
|
|
assert_tag 'input', :attributes => {:name => 'custom_field[name]', :value => 'Database'}
|
|
|
|
end
|
|
|
|
|
2011-12-10 02:58:30 +04:00
|
|
|
def test_edit_invalid_custom_field_should_render_404
|
|
|
|
get :edit, :id => 99
|
|
|
|
assert_response 404
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_update
|
|
|
|
put :update, :id => 1, :custom_field => {:name => 'New name'}
|
2011-11-28 01:11:10 +04:00
|
|
|
assert_redirected_to '/custom_fields?tab=IssueCustomField'
|
|
|
|
|
|
|
|
field = CustomField.find(1)
|
|
|
|
assert_equal 'New name', field.name
|
|
|
|
end
|
|
|
|
|
2011-12-10 02:58:30 +04:00
|
|
|
def test_update_with_failure
|
|
|
|
put :update, :id => 1, :custom_field => {:name => ''}
|
|
|
|
assert_response :success
|
|
|
|
assert_template 'edit'
|
|
|
|
end
|
|
|
|
|
2011-11-28 01:11:10 +04:00
|
|
|
def test_destroy
|
|
|
|
custom_values_count = CustomValue.count(:conditions => {:custom_field_id => 1})
|
|
|
|
assert custom_values_count > 0
|
|
|
|
|
|
|
|
assert_difference 'CustomField.count', -1 do
|
|
|
|
assert_difference 'CustomValue.count', - custom_values_count do
|
2011-12-10 02:58:30 +04:00
|
|
|
delete :destroy, :id => 1
|
2011-11-28 01:11:10 +04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to '/custom_fields?tab=IssueCustomField'
|
|
|
|
assert_nil CustomField.find_by_id(1)
|
|
|
|
assert_nil CustomValue.find_by_custom_field_id(1)
|
|
|
|
end
|
2012-04-18 23:25:54 +04:00
|
|
|
|
|
|
|
def custom_field_classes
|
|
|
|
files = Dir.glob(File.join(Rails.root, 'app/models/*_custom_field.rb')).map {|f| File.basename(f).sub(/\.rb$/, '') }
|
|
|
|
classes = files.map(&:classify).map(&:constantize)
|
|
|
|
assert classes.size > 0
|
|
|
|
classes
|
|
|
|
end
|
2009-09-20 18:06:57 +04:00
|
|
|
end
|