summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-12-11 20:38:26 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-12-11 20:38:26 +0000
commit24be0551ccd77c7facf0278825973d604942d88a (patch)
treee74ef651f120edfb72d83e623b7eb42a576e2116
parent5dd7467061fbe6b649a6bf92f969184e41bc8908 (diff)
downloadredmine-24be0551ccd77c7facf0278825973d604942d88a.tar.gz
redmine-24be0551ccd77c7facf0278825973d604942d88a.zip
Code cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10987 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/controllers/queries_controller.rb1
-rw-r--r--app/controllers/workflows_controller.rb2
-rw-r--r--test/functional/messages_controller_test.rb6
-rw-r--r--test/functional/queries_controller_test.rb6
-rw-r--r--test/functional/workflows_controller_test.rb20
5 files changed, 33 insertions, 2 deletions
diff --git a/app/controllers/queries_controller.rb b/app/controllers/queries_controller.rb
index 448b4e56b..4c1203f78 100644
--- a/app/controllers/queries_controller.rb
+++ b/app/controllers/queries_controller.rb
@@ -37,7 +37,6 @@ class QueriesController < ApplicationController
@queries = IssueQuery.visible.all(:limit => @limit, :offset => @offset, :order => "#{Query.table_name}.name")
respond_to do |format|
- format.html { render :nothing => true }
format.api
end
end
diff --git a/app/controllers/workflows_controller.rb b/app/controllers/workflows_controller.rb
index 16fe75d16..f2a948a78 100644
--- a/app/controllers/workflows_controller.rb
+++ b/app/controllers/workflows_controller.rb
@@ -106,7 +106,7 @@ class WorkflowsController < ApplicationController
if request.post?
if params[:source_tracker_id].blank? || params[:source_role_id].blank? || (@source_tracker.nil? && @source_role.nil?)
flash.now[:error] = l(:error_workflow_copy_source)
- elsif @target_trackers.nil? || @target_roles.nil?
+ elsif @target_trackers.blank? || @target_roles.blank?
flash.now[:error] = l(:error_workflow_copy_target)
else
WorkflowRule.copy(@source_tracker, @source_role, @target_trackers, @target_roles)
diff --git a/test/functional/messages_controller_test.rb b/test/functional/messages_controller_test.rb
index fa3af7917..f80d0ca78 100644
--- a/test/functional/messages_controller_test.rb
+++ b/test/functional/messages_controller_test.rb
@@ -81,6 +81,12 @@ class MessagesControllerTest < ActionController::TestCase
assert_template 'new'
end
+ def test_get_new_with_invalid_board
+ @request.session[:user_id] = 2
+ get :new, :board_id => 99
+ assert_response 404
+ end
+
def test_post_new
@request.session[:user_id] = 2
ActionMailer::Base.deliveries.clear
diff --git a/test/functional/queries_controller_test.rb b/test/functional/queries_controller_test.rb
index ba8ec13bc..5a49e56e3 100644
--- a/test/functional/queries_controller_test.rb
+++ b/test/functional/queries_controller_test.rb
@@ -24,6 +24,12 @@ class QueriesControllerTest < ActionController::TestCase
User.current = nil
end
+ def test_index
+ get :index
+ # HTML response not implemented
+ assert_response 406
+ end
+
def test_new_project_query
@request.session[:user_id] = 2
get :new, :project_id => 1
diff --git a/test/functional/workflows_controller_test.rb b/test/functional/workflows_controller_test.rb
index c4170ff52..af4ff6ef4 100644
--- a/test/functional/workflows_controller_test.rb
+++ b/test/functional/workflows_controller_test.rb
@@ -297,6 +297,26 @@ class WorkflowsControllerTest < ActionController::TestCase
assert_equal source_t3, status_transitions(:tracker_id => 3, :role_id => 3)
end
+ def test_post_copy_with_incomplete_source_specification_should_fail
+ assert_no_difference 'WorkflowRule.count' do
+ post :copy,
+ :source_tracker_id => '', :source_role_id => '2',
+ :target_tracker_ids => ['2', '3'], :target_role_ids => ['1', '3']
+ assert_response 200
+ assert_select 'div.flash.error', :text => 'Please select a source tracker or role'
+ end
+ end
+
+ def test_post_copy_with_incomplete_target_specification_should_fail
+ assert_no_difference 'WorkflowRule.count' do
+ post :copy,
+ :source_tracker_id => '1', :source_role_id => '2',
+ :target_tracker_ids => ['2', '3']
+ assert_response 200
+ assert_select 'div.flash.error', :text => 'Please select target tracker(s) and role(s)'
+ end
+ end
+
# Returns an array of status transitions that can be compared
def status_transitions(conditions)
WorkflowTransition.