##// END OF EJS Templates
Removed unnecessary calculations in time entries index....
Removed unnecessary calculations in time entries index. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8085 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7840:f9bf53262a12
r7965:10509933486a
Show More
custom_fields_controller_test.rb
117 lines | 4.0 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
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 # Copyright (C) 2006-2011 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 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
Jean-Philippe Lang
Adds functional tests for CustomFieldsController....
r7840 fixtures :custom_fields, :custom_values, :trackers, :users
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
@controller = CustomFieldsController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@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
Adds User and Version custom field format that can be used to reference a project member or version in custom fields (#2096)....
r5152 def test_get_new_issue_custom_field
get :new, :type => 'IssueCustomField'
assert_response :success
assert_template 'new'
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'
}
end
Toshi MARUYAMA
remove trailing white-spaces from test/functional/custom_fields_controller_test.rb....
r6699
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 def test_get_new_with_invalid_custom_field_class_should_redirect_to_list
get :new, :type => 'UnknownCustomField'
assert_redirected_to '/custom_fields'
end
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 test_post_new_list_custom_field
assert_difference 'CustomField.count' do
post :new, :type => "IssueCustomField",
: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
def test_get_edit
get :edit, :id => 1
assert_response :success
assert_template 'edit'
assert_tag 'input', :attributes => {:name => 'custom_field[name]', :value => 'Database'}
end
def test_post_edit
post :edit, :id => 1, :custom_field => {:name => 'New name'}
assert_redirected_to '/custom_fields?tab=IssueCustomField'
field = CustomField.find(1)
assert_equal 'New name', field.name
end
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
post :destroy, :id => 1
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
Adds missing native eol properties....
r2781 end