diff --git a/module/VuFind/tests/unit-tests/src/VuFindTest/Record/LoaderTest.php b/module/VuFind/tests/unit-tests/src/VuFindTest/Record/LoaderTest.php index 81a137fd5e9875ba78830004bc22a2a658494bcf..c034887a619e2ce0b12a788f0617167aa3159ae9 100644 --- a/module/VuFind/tests/unit-tests/src/VuFindTest/Record/LoaderTest.php +++ b/module/VuFind/tests/unit-tests/src/VuFindTest/Record/LoaderTest.php @@ -65,6 +65,28 @@ class LoaderTest extends TestCase $loader->load('test'); } + /** + * Test "tolerate missing records" feature. + * + * @return void + */ + public function testToleratedMissingRecord() + { + $collection = $this->getCollection(array()); + $service = $this->getMock('VuFindSearch\Service'); + $service->expects($this->once())->method('retrieve') + ->with($this->equalTo('VuFind'), $this->equalTo('test')) + ->will($this->returnValue($collection)); + $missing = $this->getDriver('missing', 'Missing'); + $factory = $this->getMock('VuFind\RecordDriver\PluginManager'); + $factory->expects($this->once())->method('get') + ->with($this->equalTo('Missing')) + ->will($this->returnValue($missing)); + $loader = $this->getLoader($service, $factory); + $record = $loader->load('test', 'VuFind', true); + $this->assertEquals($missing, $record); + } + /** * Test single record. *