parent
e357960d1e
commit
6d209ee203
|
@ -28,8 +28,8 @@ class DbBackendFormTest extends BaseTestCase
|
|||
{
|
||||
$this->setUpResourceFactoryMock();
|
||||
Mockery::mock('overload:Icinga\Authentication\User\DbUserBackend')
|
||||
->shouldReceive('select->where->count')
|
||||
->andReturn(2);
|
||||
->shouldReceive('inspect')
|
||||
->andReturn(self::createInspector(false));
|
||||
|
||||
// Passing array(null) is required to make Mockery call the constructor...
|
||||
$form = Mockery::mock('Icinga\Forms\Config\UserBackend\DbBackendForm[getView]', array(null));
|
||||
|
@ -54,8 +54,8 @@ class DbBackendFormTest extends BaseTestCase
|
|||
{
|
||||
$this->setUpResourceFactoryMock();
|
||||
Mockery::mock('overload:Icinga\Authentication\User\DbUserBackend')
|
||||
->shouldReceive('count')
|
||||
->andReturn(0);
|
||||
->shouldReceive('inspect')
|
||||
->andReturn(self::createInspector(true));
|
||||
|
||||
// Passing array(null) is required to make Mockery call the constructor...
|
||||
$form = Mockery::mock('Icinga\Forms\Config\UserBackend\DbBackendForm[getView]', array(null));
|
||||
|
@ -80,4 +80,21 @@ class DbBackendFormTest extends BaseTestCase
|
|||
->shouldReceive('getResourceConfig')
|
||||
->andReturn(new ConfigObject());
|
||||
}
|
||||
|
||||
public static function createInspector($error = false, $log = array('log'))
|
||||
{
|
||||
if (! $error) {
|
||||
$calls = array(
|
||||
'hasError' => false,
|
||||
'toArray' => $log
|
||||
);
|
||||
} else {
|
||||
$calls = array(
|
||||
'hasError' => true,
|
||||
'getError' => 'Error',
|
||||
'toArray' => $log
|
||||
);
|
||||
}
|
||||
return Mockery::mock('Icinga\Data\Inspection', $calls);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue