diff --git a/library/Class/CodifAuteur.php b/library/Class/CodifAuteur.php index 751802c3221b1ba863b4266a18d2497f5ba1b138..4c1d8d187cb3eafa7f8a7589d07d7279c4a3e77d 100644 --- a/library/Class/CodifAuteur.php +++ b/library/Class/CodifAuteur.php @@ -119,4 +119,8 @@ class Class_CodifAuteur extends Storm_Model_Abstract { 'mots_renvois' => '', 'id_bnf' => '', 'date_creation' => '']; + + public function getCategorie() { + return; + } } \ No newline at end of file diff --git a/library/ZendAfi/Controller/Action/Helper/AbstractListViewMode.php b/library/ZendAfi/Controller/Action/Helper/AbstractListViewMode.php index 55eb4afe4aaa34df22514edce4e3122d4acfd480..28c8b8a86e8b6203d0801ab5f349fff9825c8de0 100644 --- a/library/ZendAfi/Controller/Action/Helper/AbstractListViewMode.php +++ b/library/ZendAfi/Controller/Action/Helper/AbstractListViewMode.php @@ -45,10 +45,6 @@ abstract class ZendAfi_Controller_Action_Helper_AbstractListViewMode extends Zen if ($this->isSearching()) return; - $labelWithCount = function($model, $attrib) { - return $this->_renderCategory($model, $attrib); - }; - $description = (new Class_TableDescription('categories_' . get_class($this->getModel()))); return $this->_describeCategoriesIn($description) ->addRowAction(function($model) @@ -199,7 +195,7 @@ abstract class ZendAfi_Controller_Action_Helper_AbstractListViewMode extends Zen } - protected function getItems() { + public function getItems() { return []; } diff --git a/library/ZendAfi/Controller/Action/Helper/AuthorListViewMode.php b/library/ZendAfi/Controller/Action/Helper/AuthorListViewMode.php index ebfe1feb1abdeefdaeb07fdf7f05e00363e61134..0c751f4a8951c31e3f9d451a6772991b09932856 100644 --- a/library/ZendAfi/Controller/Action/Helper/AuthorListViewMode.php +++ b/library/ZendAfi/Controller/Action/Helper/AuthorListViewMode.php @@ -21,6 +21,8 @@ class ZendAfi_Controller_Action_Helper_AuthorListViewMode extends ZendAfi_Controller_Action_Helper_AbstractListViewMode { + + public function authorListViewMode($params) { $this->_params = $params; return $this; @@ -32,6 +34,24 @@ class ZendAfi_Controller_Action_Helper_AuthorListViewMode extends ZendAfi_Contro } + protected function _describeCategoriesIn($description) { + return $description; + } + + + protected function _describeItemsIn($description) { + return $description + ->addColumn($this->_('Nom prénom'), ['attribute' => 'libelle', + 'callback' => function($model, $attrib) + { + return $this->_renderItem($model, $attrib); + }]) + ->addColumn($this->_('Code facette'), ['attribute' => 'facet_code', + 'sort_attribute' => 'id_auteur']) + ->setSorterServer(); + } + + public function getBreadcrumb() { return [['url' => ['module' => 'admin', 'controller' => 'codification-browser', diff --git a/library/ZendAfi/Controller/Action/Helper/CodificationListViewMode.php b/library/ZendAfi/Controller/Action/Helper/CodificationListViewMode.php index b92a7a6df559b38560e956405d86a6a60bccf42d..d70b4010a5dc7848355bf1c2244ecee332cff822 100644 --- a/library/ZendAfi/Controller/Action/Helper/CodificationListViewMode.php +++ b/library/ZendAfi/Controller/Action/Helper/CodificationListViewMode.php @@ -21,6 +21,8 @@ class ZendAfi_Controller_Action_Helper_CodificationListViewMode extends ZendAfi_Controller_Action_Helper_AbstractListViewMode { + + public function codificationListViewMode($params) { $this->_params = $params; return $this; @@ -32,6 +34,21 @@ class ZendAfi_Controller_Action_Helper_CodificationListViewMode extends ZendAfi_ } + protected function _describeCategoriesIn($description) { + return $description + ->addColumn($this->_('Codification'), ['attribute' => 'libelle', + 'callback' => function($model, $attrib) + { + return $this->_renderCategory($model, $attrib); + }]); + } + + + protected function _describeItemsIn($description) { + return $description; + } + + public function getBreadcrumb() { return [['url' => ['module' => 'admin', 'controller' => 'codification-browser', diff --git a/tests/scenarios/AuthorBrowser/AuthorBrowserTest.php b/tests/scenarios/AuthorBrowser/AuthorBrowserTest.php new file mode 100644 index 0000000000000000000000000000000000000000..b3c689b5daafda30f84650a3b5234cb66a1cb682 --- /dev/null +++ b/tests/scenarios/AuthorBrowser/AuthorBrowserTest.php @@ -0,0 +1,116 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +abstract class AuthorBrowserTestCase extends Admin_AbstractControllerTestCase { + protected + $_storm_default_to_volatile = true, + $_erroc; + + + public function setUp() { + parent::setUp(); + + $this->_erroc = $this->fixture('Class_CodifAuteur', + ['id' => 15, + 'libelle' => 'Erroc']); + } +} + + + + +class AuthorBrowserIndexDispatchTest extends AuthorBrowserTestCase { + + public function setUp() { + parent::setUp(); + $this->dispatch('/admin/author-browser', true); + } + + + /** @test */ + public function linkToCodificationBrowserShouldBePresent() { + $this->assertXPathContentContains('//a[@href="/admin/codification-browser"]', 'Racine'); + } + + + /** @test */ + public function linkToSearchWithFacetA15ShouldBePresent() { + $this->assertXPath('//td//a[contains(@href, "/recherche/simple/facette/A15")]'); + } +} + + + + +class AuthorBrowserSearchTest extends AuthorBrowserTestCase { + public function setUp() { + parent::setUp(); + $_SERVER['HTTP_REFERER'] = 'http://test.org/admin/author-browser/index'; + } + + + /** @test */ + public function searchShouldRedirect() { + $this->postDispatch('/admin/author-browser/index', + ['title_search' => 'Erroc']); + $this->assertRedirectTo('/admin/author-browser/index/title_search/Erroc/page/1/order/libelle'); + } + + + /** @test */ + public function redirectedShouldDisplayResult() { + $this->onLoaderOfModel('Class_CodifAuteur') + + ->whenCalled('findAllBy') + ->with(['where' => "(libelle like '%Erroc%') or (id_auteur like '%Erroc%')", + 'order' => "libelle", + 'limitPage' => ["1", 25]]) + ->answers([$this->_erroc]) + + ->whenCalled('countBy') + ->with(['where' => "(libelle like '%Erroc%') or (id_auteur like '%Erroc%')", + 'order' => "libelle"]) + ->answers(1) + + ->beStrict(); + + $this->dispatch('/admin/author-browser/index/title_search/Erroc/page/1/order/libelle', true); + $this->assertXpathContentContains('//table', 'Erroc'); + } +} + + + + +class AuthorBrowserIndexOrderTest extends AuthorBrowserTestCase { + + public function setUp() { + parent::setUp(); + $this->dispatch('/admin/author-browser/index/order/id_auteur', true); + } + + + /** @test */ + public function codeFacetOrderLinkShouldDesc() { + $this->assertXpathContentContains('//table//a[contains(@href, "order/id_auteur+desc")]', 'Code facette'); + } +} \ No newline at end of file diff --git a/tests/scenarios/CodificationBrowser/CodificationBrowserTest.php b/tests/scenarios/CodificationBrowser/CodificationBrowserTest.php index bb4d588376e8d33c04fe56fe1ecb23e8b670c113..9210835c9e89977748f4943eb17d036654264918 100644 --- a/tests/scenarios/CodificationBrowser/CodificationBrowserTest.php +++ b/tests/scenarios/CodificationBrowser/CodificationBrowserTest.php @@ -47,34 +47,4 @@ class CodificationBrowserIndexDispatchTest extends Admin_AbstractControllerTestC public function authorsShouldBeInTable() { $this->assertXPathContentContains('//td//a[@href="/admin/author-browser"]', 'Auteurs'); } -} - - - - -class CodificationBrowserAuthorIndexDispatchTest extends Admin_AbstractControllerTestCase { - protected $_storm_default_to_volatile = true; - - - public function setUp() { - parent::setUp(); - - $this->fixture('Class_CodifAuteur', - ['id' => 15, - 'libelle' => 'Erroc']); - - $this->dispatch('/admin/author-browser', true); - } - - - /** @test */ - public function linkToCodificationBrowserShouldBePresent() { - $this->assertXPathContentContains('//a[@href="/admin/codification-browser"]', 'Racine'); - } - - - /** @test */ - public function linkToSearchWithFacetA15ShouldBePresent() { - $this->assertXPath('//td//a[contains(@href, "/recherche/simple/facette/A15")]'); - } } \ No newline at end of file diff --git a/tests/scenarios/Thesauri/ThesauriTest.php b/tests/scenarios/Thesauri/ThesauriTest.php index 194b5d0da792009f5736aafe66816a1054f7cbe1..79c5ec20a372b7caeefaab6a717b02496f9235a9 100644 --- a/tests/scenarios/Thesauri/ThesauriTest.php +++ b/tests/scenarios/Thesauri/ThesauriTest.php @@ -140,6 +140,8 @@ class ThesauriIndexChildrenTest extends ThesauriTestCase { } + + class ThesauriIndexChildrenSearchTest extends ThesauriTestCase { public function setUp() { parent::setUp();