From b55ecd2692386dae239c97b09ab0db4da4d8af40 Mon Sep 17 00:00:00 2001
From: Laurent Laffont <llaffont@afi-sa.fr>
Date: Tue, 19 Jan 2021 17:17:20 +0100
Subject: [PATCH] hotline #124962 ToutApprendre : fix editor fulltext
 indexation

---
 VERSIONS_HOTLINE/124962                       |  1 +
 library/Class/Indexation/PseudoNotice.php     |  1 +
 .../ToutApprendre/tests/ToutApprendreTest.php | 49 ++++++++++++++-----
 3 files changed, 40 insertions(+), 11 deletions(-)
 create mode 100644 VERSIONS_HOTLINE/124962

diff --git a/VERSIONS_HOTLINE/124962 b/VERSIONS_HOTLINE/124962
new file mode 100644
index 00000000000..b39c1372f4f
--- /dev/null
+++ b/VERSIONS_HOTLINE/124962
@@ -0,0 +1 @@
+ - ticket #124962 : Connecteur ToutApprendre : indexation de l'éditeur pour la recherche full text
\ No newline at end of file
diff --git a/library/Class/Indexation/PseudoNotice.php b/library/Class/Indexation/PseudoNotice.php
index ccdd9b5d899..e340f01a14f 100644
--- a/library/Class/Indexation/PseudoNotice.php
+++ b/library/Class/Indexation/PseudoNotice.php
@@ -414,6 +414,7 @@ class Class_Indexation_PseudoNotice_Album extends Class_Indexation_PseudoNotice{
     $model = $this->_model;
     $this->_datas['notes'] = $model->getNotesForPseudoNotice();
     $this->_datas['created_at'] = $model->getCreatedAt();
+    $this->_datas['editeur'] = $this->getEditorsNames();
   }
 
 
diff --git a/library/digital_resources/ToutApprendre/tests/ToutApprendreTest.php b/library/digital_resources/ToutApprendre/tests/ToutApprendreTest.php
index f0434f5fbb9..20e7685399b 100644
--- a/library/digital_resources/ToutApprendre/tests/ToutApprendreTest.php
+++ b/library/digital_resources/ToutApprendre/tests/ToutApprendreTest.php
@@ -208,8 +208,6 @@ abstract class ToutApprendreHarvestTestCase extends ToutApprendreActivatedTestCa
 
 
 class ToutApprendreHarvestTest extends ToutApprendreHarvestTestCase {
-
-
   /** @test */
   public function numberOfAlbumsShould5() {
     $this->assertCount(5, $this->_service->getRessourcesNumeriques());
@@ -295,14 +293,6 @@ class ToutApprendreHarvestTest extends ToutApprendreHarvestTestCase {
   }
 
 
-  /** @test */
-  public function tagsShouldBeIndexedInRecord() {
-    $this->_first_album->index();
-    $record = Class_Notice::find(1);
-    $this->assertContains('Z1 Z2', $record->getFacettes());
-  }
-
-
   /** @test */
   public function durationBeImported() {
     $this->assertEquals('3 heures',$this->_first_album->getDuration());
@@ -341,6 +331,43 @@ class ToutApprendreHarvestTest extends ToutApprendreHarvestTestCase {
 
 
 
+class ToutApprendreHarvestIndexationTest extends ToutApprendreHarvestTestCase {
+  public function setUp() {
+    parent::setUp();
+    $this->_first_album->index();
+  }
+
+
+  /** @test */
+  public function tagsShouldBeIndexedInRecord() {
+    $this->assertContains('Z1 Z2', Class_Notice::find(1)->getFacettes());
+  }
+
+
+  /** @test */
+  public function record214DollarCShouldContainsEditorEduPerformance() {
+    $this->assertEquals(['ToutApprendre.com - EduPerformance'],
+                        Class_Notice::find(1)->get_subfield('214', 'c'));
+  }
+
+
+  /** @test */
+  public function recordEditorsShouldContainsEduPerformance() {
+    $this->assertEquals(['ToutApprendre.com - EduPerformance'],
+                        Class_Notice::find(1)->getEditeurs());
+  }
+
+
+  /** @test */
+  public function recordFullTextEditeurShouldBePhoneticToutApprendreEduPerformance() {
+    $this->assertEquals('TOUTAPPRENDRECOM TOUTAPRANDREKON EDUPERFORMANCE EDUPERFORMANS',
+                        Class_Notice::find(1)->getEditeur());
+  }
+}
+
+
+
+
 class ToutApprendreHarvestIssueTest extends ToutApprendreActivatedTestCase {
   protected $_service;
 
@@ -484,4 +511,4 @@ class ToutApprendreSsoResourceWithoutPermissionTest extends AbstractControllerTe
   public function shouldNotifyNotAllowed() {
     $this->assertFlashMessengerContentContains('Votre compte n\'est pas autorisé à accéder à cette ressource');
   }
-}
\ No newline at end of file
+}
-- 
GitLab