Skip to content
Snippets Groups Projects
Commit 359e3152 authored by Demian Katz's avatar Demian Katz
Browse files

Fix broken tests.

parent 39a305f1
No related merge requests found
...@@ -48,7 +48,9 @@ class MultiBackendTest extends \VuFindTest\Unit\TestCase ...@@ -48,7 +48,9 @@ class MultiBackendTest extends \VuFindTest\Unit\TestCase
{ {
$this->setExpectedException('VuFind\Exception\ILS'); $this->setExpectedException('VuFind\Exception\ILS');
$test = new MultiBackend(new \VuFind\Config\PluginManager()); $test = new MultiBackend(
new \VuFind\Config\PluginManager(), $this->getMockILSAuthenticator()
);
$test->init(); $test->init();
} }
...@@ -84,7 +86,7 @@ class MultiBackendTest extends \VuFindTest\Unit\TestCase ...@@ -84,7 +86,7 @@ class MultiBackendTest extends \VuFindTest\Unit\TestCase
->will( ->will(
$this->throwException(new \Zend\Config\Exception\RuntimeException()) $this->throwException(new \Zend\Config\Exception\RuntimeException())
); );
$driver = new MultiBackend($mockPM); $driver = new MultiBackend($mockPM, $this->getMockILSAuthenticator());
$driver->setConfig(array('Drivers' => array())); $driver->setConfig(array('Drivers' => array()));
$driver->init(); $driver->init();
$val = $this->callMethod($driver, 'getDriverConfig', array('bad')); $val = $this->callMethod($driver, 'getDriverConfig', array('bad'));
...@@ -650,12 +652,26 @@ class MultiBackendTest extends \VuFindTest\Unit\TestCase ...@@ -650,12 +652,26 @@ class MultiBackendTest extends \VuFindTest\Unit\TestCase
*/ */
protected function getDriver() protected function getDriver()
{ {
$driver = new MultiBackend($this->getPluginManager()); $driver = new MultiBackend(
$this->getPluginManager(), $this->getMockILSAuthenticator()
);
$driver->setConfig(array('Drivers' => array())); $driver->setConfig(array('Drivers' => array()));
$driver->init(); $driver->init();
return $driver; return $driver;
} }
/**
* Get a mock ILS authenticator
*
* @return \VuFind\Auth\ILSAuthenticator
*/
protected function getMockILSAuthenticator()
{
return $this->getMockBuilder('VuFind\Auth\ILSAuthenticator')
->disableOriginalConstructor()
->getMock();
}
/** /**
* Method to get a fresh Plugin Manager. * Method to get a fresh Plugin Manager.
* *
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment