From e29b0da1c8d9162a1ef36a7077053e43ce063948 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 10 Jun 2017 12:18:09 +0000 Subject: [PATCH] Adds tests for #25775. git-svn-id: http://svn.redmine.org/redmine/trunk@16656 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/functional/issues_controller_test.rb | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index c6c58b684..f1f9e1ae2 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -6376,4 +6376,32 @@ class IssuesControllerTest < Redmine::ControllerTest assert_response :success assert_select 'a[href=?][onclick=?]', "/issues/1", "", :text => 'Cancel' end + + def test_show_should_display_author_gravatar_only_when_not_assigned + issue = Issue.find(1) + assert_nil issue.assigned_to_id + @request.session[:user_id] = 1 + + with_settings :gravatar_enabled => '1' do + get :show, :id => issue.id + assert_select 'div.gravatar-with-child' do + assert_select 'img.gravatar', 1 + end + end + end + + def test_show_should_display_author_and_assignee_gravatars_when_assigned + issue = Issue.find(1) + issue.assigned_to_id = 2 + issue.save! + @request.session[:user_id] = 1 + + with_settings :gravatar_enabled => '1' do + get :show, :id => issue.id + assert_select 'div.gravatar-with-child' do + assert_select 'img.gravatar', 2 + assert_select 'img.gravatar-child', 1 + end + end + end end -- 2.39.5