diff --git a/config/vufind/searches.ini b/config/vufind/searches.ini index 0b2a1c8bc6fae91204f27308db5162183615ef31..bd9434c64a57afc8889767e484118a8a1a3f55d4 100644 --- a/config/vufind/searches.ini +++ b/config/vufind/searches.ini @@ -177,7 +177,7 @@ CallNumber = callnumber ; separated list of dataproviders to ignore results from; useful for excluding ; own results that are also in Europeana. An API key must be set in config.ini ; (see europeanaAPI setting in [Content] section). -; EuropeanaResultsDeferred: [url]:[requestParam][limit]:[unwanted data providers] +; EuropeanaResultsDeferred: [url]:[requestParam]:[limit]:[unwanted data providers] ; See EuropeanaResults, but this version uses AJAX. ; ExpandFacets:[ini section]:[ini name] ; Display facets listed in the specified section of the specified ini file; diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/Recommend/EuropeanaResultsDeferredTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/Recommend/EuropeanaResultsDeferredTest.php new file mode 100644 index 0000000000000000000000000000000000000000..3937c4963a87117efb6161f0cb372510c95189be --- /dev/null +++ b/module/VuFind/tests/unit-tests/src/VuFindTest/Recommend/EuropeanaResultsDeferredTest.php @@ -0,0 +1,54 @@ +<?php +/** + * EuropeanaResultsDeferred recommendation module Test Class + * + * PHP version 5 + * + * Copyright (C) Villanova University 2010. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2, + * as published by the Free Software Foundation. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * @category VuFind2 + * @package Tests + * @author Demian Katz <demian.katz@villanova.edu> + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki + */ +namespace VuFindTest\Recommend; + +/** + * EuropeanaResultsDeferred recommendation module Test Class + * + * @category VuFind2 + * @package Tests + * @author Demian Katz <demian.katz@villanova.edu> + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License + * @link http://vufind.org/wiki/vufind2:unit_tests Wiki + */ +class EuropeanaResultsDeferredTest extends \VuFindTest\Unit\RecommendDeferredTestCase +{ + /** + * Test standard operation + * + * @return void + */ + public function testStandardOperation() + { + $mod = $this->getRecommend('VuFind\Recommend\EuropeanaResultsDeferred'); + $this->assertEquals( + 'mod=EuropeanaResults¶ms=%3A%3A%3A&lookfor=foo', + $mod->getUrlParams() + ); + } +} \ No newline at end of file