diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-04 18:40:15 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-04 18:40:15 +0000 |
commit | 945a091c94a9ed651f61e225fa8646479478e9d4 (patch) | |
tree | 146eb7f80fc8ed8f5b7c9289ca360e766448bbbc /test/functional/timelog_controller_test.rb | |
parent | c096dde88ff02872ba35edc4dc403c80a7867b5c (diff) | |
download | redmine-945a091c94a9ed651f61e225fa8646479478e9d4.tar.gz redmine-945a091c94a9ed651f61e225fa8646479478e9d4.zip |
Don't let users log time on issues they cannot see in their projects (#21150).
git-svn-id: http://svn.redmine.org/redmine/trunk@14796 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/timelog_controller_test.rb')
-rw-r--r-- | test/functional/timelog_controller_test.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb index 68fde87f0..7ce39caab 100644 --- a/test/functional/timelog_controller_test.rb +++ b/test/functional/timelog_controller_test.rb @@ -219,6 +219,23 @@ class TimelogControllerTest < ActionController::TestCase end end + def test_create_on_issue_that_is_not_visible_should_not_disclose_subject + issue = Issue.generate!(:subject => "issue_that_is_not_visible", :is_private => true) + assert !issue.visible?(User.find(3)) + + @request.session[:user_id] = 3 + assert_no_difference 'TimeEntry.count' do + post :create, :time_entry => { + :project_id => '', :issue_id => issue.id.to_s, + :activity_id => '11', :spent_on => '2008-03-14', :hours => '7.3' + } + end + assert_select_error /Issue is invalid/ + assert_select "input[name=?][value=?]", "time_entry[issue_id]", issue.id.to_s + assert_select "#time_entry_issue", 0 + assert !response.body.include?('issue_that_is_not_visible') + end + def test_create_and_continue_at_project_level @request.session[:user_id] = 2 assert_difference 'TimeEntry.count' do |