summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-04-29 19:18:26 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-04-29 19:18:26 +0000
commitf87be7fd540828a39911f6757d82cc76922b428c (patch)
treec4e8d7c82ff652d9da0f0e5061b863a0ce7e9c47 /test
parentc2d4db8dd02a662453074db4cc875b3c9f1a2c9a (diff)
downloadredmine-f87be7fd540828a39911f6757d82cc76922b428c.tar.gz
redmine-f87be7fd540828a39911f6757d82cc76922b428c.zip
Merged r22792 from trunk to 5.0-stable (#40410).
git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@22799 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/functional/issues_controller_test.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb
index 0faccb8be..87a584660 100644
--- a/test/functional/issues_controller_test.rb
+++ b/test/functional/issues_controller_test.rb
@@ -4699,6 +4699,24 @@ class IssuesControllerTest < Redmine::ControllerTest
assert_select 'input[name=?][value="8"][checked=checked]', 'issue[watcher_user_ids][]'
end
+ def test_post_create_with_failure_should_not_dereference_group_watchers
+ @request.session[:user_id] = 1
+ post(
+ :create,
+ :params => {
+ :project_id => 5,
+ :issue => {
+ :tracker_id => 1,
+ :watcher_user_ids => ['11']
+ }
+ }
+ )
+ assert_response :success
+
+ assert_select 'input[name=?][value="8"][checked=checked]', 'issue[watcher_user_ids][]', 0
+ assert_select 'input[name=?][value="11"][checked=checked]', 'issue[watcher_user_ids][]', 1
+ end
+
def test_post_create_should_ignore_non_safe_attributes
@request.session[:user_id] = 2
assert_nothing_raised do