diff --git a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php index 0339706bfe278b53a59dd188a797d20472fd6c23..594f19eaac429ee9c4feedbe519f18aa5896c979 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php +++ b/module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php @@ -288,7 +288,12 @@ class MultiBackend extends AbstractBase { $driver = $this->getDriver($this->defaultDriver); if ($driver) { - return $driver->getNewItems($page, $limit, $daysOld, $fundId); + $result = $driver->getNewItems($page, $limit, $daysOld, $fundId); + if (isset($result['results'])) { + $result['results'] + = $this->addIdPrefixes($result['results'], $this->defaultDriver); + } + return $result; } return []; } diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/MultiBackendTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/MultiBackendTest.php index 86de298bd4d89f33c93fa13014daaabd7aecc92d..8fec96624ff2bc2ed71b0ac9806419bb1d991ef4 100644 --- a/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/MultiBackendTest.php +++ b/module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/MultiBackendTest.php @@ -778,20 +778,32 @@ class MultiBackendTest extends \VuFindTest\Unit\TestCase */ public function testGetNewItems() { - $expected = ['test' => 'true']; - $driver = $this->initSimpleMethodTest( - $this->once(), - $this->never(), - 'getNewItems', - [1, 10, 5, 0], - $expected, - $expected - ); + $driver = $this->getDriver(); + $drivers = ['d1' => 'Voyager']; + $this->setProperty($driver, 'drivers', $drivers); + + $return = [ + 'count' => 2, + 'results' => ['id' => '1', 'id' => '2'] + ]; + + $ILS = $this->getMockILS('Voyager', ['getNewItems', 'init']); + $ILS->expects($this->once()) + ->method('getNewItems') + ->with($this->equalTo('1'), $this->equalTo('10'), $this->equalTo('5'), $this->equalTo('0')) + ->will($this->returnValue($return)); + + $sm = $this->getMockSM($this->any(), 'Voyager', $ILS); + $driver->setServiceLocator($sm); // getNewItems only works with a default driver, so the first calls fails $result = $driver->getNewItems(1, 10, 5, 0); $this->assertEquals([], $result); + $expected = [ + 'count' => 2, + 'results' => ['id' => 'd1.1', 'id' => 'd1.2'] + ]; $this->setProperty($driver, 'defaultDriver', 'd1'); $result = $driver->getNewItems(1, 10, 5, 0); $this->assertEquals($expected, $result);