From a25f2596df4a7218427f1b3fb092c61bcaa99dc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ANDRE=20s=C3=A9bastien?= <sandre@afi-sa.fr> Date: Tue, 14 Dec 2021 09:32:41 +0100 Subject: [PATCH] hotline: #142363 : display anonymous user on moderation --- VERSIONS_HOTLINE/142363 | 1 + library/Class/SuggestionAchat.php | 4 +-- .../admin/controllers/ModoControllerTest.php | 28 +++++++++++++++++++ 3 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 VERSIONS_HOTLINE/142363 diff --git a/VERSIONS_HOTLINE/142363 b/VERSIONS_HOTLINE/142363 new file mode 100644 index 00000000000..f00f7105cc5 --- /dev/null +++ b/VERSIONS_HOTLINE/142363 @@ -0,0 +1 @@ + - ticket #142363 : Admin : dans le tableau des modérations des suggestions d'achats, affiché un libéllé Anonyme si l'utilisateurs n'existe plus \ No newline at end of file diff --git a/library/Class/SuggestionAchat.php b/library/Class/SuggestionAchat.php index 4ce03a6b294..23650058199 100644 --- a/library/Class/SuggestionAchat.php +++ b/library/Class/SuggestionAchat.php @@ -163,7 +163,7 @@ class Class_SuggestionAchat extends Storm_Model_Abstract { public function getCompte() { if ($this->hasUser()) return $this->getUser()->getNomComplet(); - return ''; + return $this->_('Anonyme'); } @@ -203,4 +203,4 @@ class Class_SuggestionAchat extends Storm_Model_Abstract { return $this; } } -?> \ No newline at end of file +?> diff --git a/tests/application/modules/admin/controllers/ModoControllerTest.php b/tests/application/modules/admin/controllers/ModoControllerTest.php index fc72c0addaa..cca35578ea9 100644 --- a/tests/application/modules/admin/controllers/ModoControllerTest.php +++ b/tests/application/modules/admin/controllers/ModoControllerTest.php @@ -1262,3 +1262,31 @@ class ModoControllerArchivedReviewsActionTest extends ModoControllerIndexActionT $this->assertEquals(0,Class_AvisNotice::find(223)->getFlags()); } } + + + + +/** @see https://forge.afi-sa.net/issues/142363 */ +class ModoControllerWithoutUserTest extends Admin_AbstractControllerTestCase { + + protected $_storm_default_to_volatile = true; + + public function setUp() { + parent::setUp(); + + $this->fixture(Class_SuggestionAchat::class, + ['id' => 1, + 'date_creation' => '2021-12-14', + 'type_doc_id' => 1, + 'titre' => 'Happy christmass', + 'user_id' => 10]); + + $this->dispatch('admin/modo/suggestion-achat'); + } + + + /** @test */ + public function pageShouldContainsAnonymousUser() { + $this->assertXPathContentContains('//table//td', 'Anonyme'); + } +} -- GitLab