##// END OF EJS Templates
fix typo at test/unit/helpers/application_helper_test.rb...
fix typo at test/unit/helpers/application_helper_test.rb git-svn-id: http://svn.redmine.org/redmine/trunk@13093 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12574:7b127ee489a1
r12818:a581f35dff23
Show More
custom_fields_controller_test.rb
227 lines | 8.1 KiB | text/x-ruby | RubyLexer
/ test / functional / custom_fields_controller_test.rb
Jean-Philippe Lang
Adds missing native eol properties....
r2781 # Redmine - project management software
Toshi MARUYAMA
update copyright year (#15977)...
r12461 # Copyright (C) 2006-2014 Jean-Philippe Lang
Jean-Philippe Lang
Adds missing native eol properties....
r2781 #
# 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.
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699 #
Jean-Philippe Lang
Adds missing native eol properties....
r2781 # 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.
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699 #
Jean-Philippe Lang
Adds missing native eol properties....
r2781 # 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.
Jean-Baptiste Barth
Use absolute paths in test/**/* requires for Ruby 1.9.2 compatibility. #4050...
r4395 require File.expand_path('../../test_helper', __FILE__)
Jean-Philippe Lang
Adds missing native eol properties....
r2781
class CustomFieldsControllerTest < ActionController::TestCase
Jean-Philippe Lang
Projects selection on custom field form (#15136)....
r11995 fixtures :custom_fields, :custom_values, :trackers, :users, :projects
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699
Jean-Philippe Lang
Adds missing native eol properties....
r2781 def setup
@request.session[:user_id] = 1
end
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840 def test_index
get :index
assert_response :success
assert_template 'index'
end
Jean-Philippe Lang
Show tabs for existing custom field types only and adds a view for choosing the type when adding a new custom field....
r12574 def test_new_without_type_should_render_select_type
get :new
assert_response :success
assert_template 'select_type'
assert_select 'input[name=type]', CustomField.subclasses.size
assert_select 'input[name=type][checked=checked]', 1
end
Jean-Philippe Lang
Merged custom fields format refactoring....
r12125 def test_new_should_work_for_each_customized_class_and_format
Jean-Philippe Lang
Additional tests for CustomFieldsController....
r9303 custom_field_classes.each do |klass|
Jean-Philippe Lang
Merged custom fields format refactoring....
r12125 Redmine::FieldFormat.available_formats.each do |format_name|
get :new, :type => klass.name, :custom_field => {:field_format => format_name}
assert_response :success
assert_template 'new'
assert_kind_of klass, assigns(:custom_field)
assert_equal format_name, assigns(:custom_field).format.name
assert_select 'form#custom_field_form' do
assert_select 'select#custom_field_field_format[name=?]', 'custom_field[field_format]'
assert_select 'input[type=hidden][name=type][value=?]', klass.name
end
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 end
Jean-Philippe Lang
Additional tests for CustomFieldsController....
r9303 end
end
Jean-Philippe Lang
Merged custom fields format refactoring....
r12125 def test_new_should_have_string_default_format
get :new, :type => 'IssueCustomField'
assert_response :success
assert_equal 'string', assigns(:custom_field).format.name
end
Jean-Philippe Lang
Resourcified custom fields....
r8024 def test_new_issue_custom_field
Jean-Philippe Lang
Adds User and Version custom field format that can be used to reference a project member or version in custom fields (#2096)....
r5152 get :new, :type => 'IssueCustomField'
assert_response :success
assert_template 'new'
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 assert_select 'form#custom_field_form' do
assert_select 'select#custom_field_field_format[name=?]', 'custom_field[field_format]' do
assert_select 'option[value=user]', :text => 'User'
assert_select 'option[value=version]', :text => 'Version'
end
Jean-Philippe Lang
Projects selection on custom field form (#15136)....
r11995 assert_select 'input[type=checkbox][name=?]', 'custom_field[project_ids][]', Project.count
assert_select 'input[type=hidden][name=?]', 'custom_field[project_ids][]', 1
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 assert_select 'input[type=hidden][name=type][value=IssueCustomField]'
end
end
Jean-Philippe Lang
Projects selection on custom field form (#15136)....
r11995 def test_new_time_entry_custom_field_should_not_show_trackers_and_projects
get :new, :type => 'TimeEntryCustomField'
assert_response :success
assert_template 'new'
assert_select 'form#custom_field_form' do
assert_select 'input[name=?]', 'custom_field[tracker_ids][]', 0
assert_select 'input[name=?]', 'custom_field[project_ids][]', 0
end
end
Jean-Philippe Lang
Use a textarea instead of an input for the default value of long text custom fields (#13176)....
r11166 def test_default_value_should_be_an_input_for_string_custom_field
get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'string'}
assert_response :success
assert_select 'input[name=?]', 'custom_field[default_value]'
end
def test_default_value_should_be_a_textarea_for_text_custom_field
get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'text'}
assert_response :success
assert_select 'textarea[name=?]', 'custom_field[default_value]'
end
def test_default_value_should_be_a_checkbox_for_bool_custom_field
get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'bool'}
assert_response :success
Jean-Philippe Lang
Merged custom fields format refactoring....
r12125 assert_select 'select[name=?]', 'custom_field[default_value]' do
assert_select 'option', 3
end
Jean-Philippe Lang
Use a textarea instead of an input for the default value of long text custom fields (#13176)....
r11166 end
def test_default_value_should_not_be_present_for_user_custom_field
get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'user'}
assert_response :success
assert_select '[name=?]', 'custom_field[default_value]', 0
end
Jean-Philippe Lang
Update the new custom field form with remotely....
r9980 def test_new_js
get :new, :type => 'IssueCustomField', :custom_field => {:field_format => 'list'}, :format => 'js'
assert_response :success
assert_template 'new'
assert_equal 'text/javascript', response.content_type
field = assigns(:custom_field)
assert_equal 'list', field.field_format
Jean-Philippe Lang
Adds User and Version custom field format that can be used to reference a project member or version in custom fields (#2096)....
r5152 end
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699
Jean-Philippe Lang
Show tabs for existing custom field types only and adds a view for choosing the type when adding a new custom field....
r12574 def test_new_with_invalid_custom_field_class_should_render_select_type
Jean-Philippe Lang
Adds User and Version custom field format that can be used to reference a project member or version in custom fields (#2096)....
r5152 get :new, :type => 'UnknownCustomField'
Jean-Philippe Lang
Show tabs for existing custom field types only and adds a view for choosing the type when adding a new custom field....
r12574 assert_response :success
assert_template 'select_type'
Jean-Philippe Lang
Adds User and Version custom field format that can be used to reference a project member or version in custom fields (#2096)....
r5152 end
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699
Jean-Philippe Lang
Resourcified custom fields....
r8024 def test_create_list_custom_field
Jean-Philippe Lang
Adds missing native eol properties....
r2781 assert_difference 'CustomField.count' do
Jean-Philippe Lang
Resourcified custom fields....
r8024 post :create, :type => "IssueCustomField",
Jean-Philippe Lang
Adds missing native eol properties....
r2781 :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", ""]}
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699 end
Jean-Philippe Lang
Adds missing native eol properties....
r2781 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
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840
Jean-Philippe Lang
Projects selection on custom field form (#15136)....
r11995 def test_create_with_project_ids
assert_difference 'CustomField.count' do
post :create, :type => "IssueCustomField", :custom_field => {
:name => "foo", :field_format => "string", :is_for_all => "0", :project_ids => ["1", "3", ""]
}
assert_response 302
end
field = IssueCustomField.order("id desc").first
assert_equal [1, 3], field.projects.map(&:id).sort
end
Jean-Philippe Lang
Resourcified custom fields....
r8024 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
Jean-Philippe Lang
Show tabs for existing custom field types only and adds a view for choosing the type when adding a new custom field....
r12574 def test_create_without_type_should_render_select_type
assert_no_difference 'CustomField.count' do
post :create, :custom_field => {:name => ''}
end
assert_response :success
assert_template 'select_type'
end
Jean-Philippe Lang
Resourcified custom fields....
r8024 def test_edit
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840 get :edit, :id => 1
assert_response :success
assert_template 'edit'
assert_tag 'input', :attributes => {:name => 'custom_field[name]', :value => 'Database'}
end
Jean-Philippe Lang
Resourcified custom fields....
r8024 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'}
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840 assert_redirected_to '/custom_fields?tab=IssueCustomField'
field = CustomField.find(1)
assert_equal 'New name', field.name
end
Jean-Philippe Lang
Resourcified custom fields....
r8024 def test_update_with_failure
put :update, :id => 1, :custom_field => {:name => ''}
assert_response :success
assert_template 'edit'
end
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840 def test_destroy
Jean-Philippe Lang
Cleanup of finders with :conditions option....
r11733 custom_values_count = CustomValue.where(:custom_field_id => 1).count
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840 assert custom_values_count > 0
assert_difference 'CustomField.count', -1 do
assert_difference 'CustomValue.count', - custom_values_count do
Jean-Philippe Lang
Resourcified custom fields....
r8024 delete :destroy, :id => 1
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840 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
Jean-Philippe Lang
Additional tests for CustomFieldsController....
r9303
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
Jean-Philippe Lang
Adds missing native eol properties....
r2781 end