Fix tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
9e68804049
commit
ada17934d8
|
@ -89,7 +89,7 @@ class CoordinatorTest extends TestCase {
|
|||
->with(\OCA\Settings\AppInfo\Application::class)
|
||||
->willThrowException(new QueryException(""));
|
||||
$this->logger->expects($this->once())
|
||||
->method('logException');
|
||||
->method('error');
|
||||
|
||||
$this->coordinator->bootApp($appId);
|
||||
}
|
||||
|
|
|
@ -60,8 +60,6 @@ class RegistrationContextTest extends TestCase {
|
|||
$container->expects($this->once())
|
||||
->method('registerCapability')
|
||||
->with($name);
|
||||
$this->logger->expects($this->never())
|
||||
->method('logException');
|
||||
|
||||
$this->context->for('myapp')->registerCapability($name);
|
||||
$this->context->delegateCapabilityRegistrations([
|
||||
|
@ -76,8 +74,6 @@ class RegistrationContextTest extends TestCase {
|
|||
$dispatcher->expects($this->once())
|
||||
->method('addServiceListener')
|
||||
->with($event, $service, 0);
|
||||
$this->logger->expects($this->never())
|
||||
->method('logException');
|
||||
|
||||
$this->context->for('myapp')->registerEventListener($event, $service);
|
||||
$this->context->delegateEventListenerRegistrations($dispatcher);
|
||||
|
@ -98,8 +94,6 @@ class RegistrationContextTest extends TestCase {
|
|||
$container->expects($this->once())
|
||||
->method('registerService')
|
||||
->with($service, $factory, $shared);
|
||||
$this->logger->expects($this->never())
|
||||
->method('logException');
|
||||
|
||||
$this->context->for('myapp')->registerService($service, $factory, $shared);
|
||||
$this->context->delegateContainerRegistrations([
|
||||
|
@ -117,8 +111,6 @@ class RegistrationContextTest extends TestCase {
|
|||
$container->expects($this->once())
|
||||
->method('registerAlias')
|
||||
->with($alias, $target);
|
||||
$this->logger->expects($this->never())
|
||||
->method('logException');
|
||||
|
||||
$this->context->for('myapp')->registerServiceAlias($alias, $target);
|
||||
$this->context->delegateContainerRegistrations([
|
||||
|
@ -136,8 +128,6 @@ class RegistrationContextTest extends TestCase {
|
|||
$container->expects($this->once())
|
||||
->method('registerParameter')
|
||||
->with($name, $value);
|
||||
$this->logger->expects($this->never())
|
||||
->method('logException');
|
||||
|
||||
$this->context->for('myapp')->registerParameter($name, $value);
|
||||
$this->context->delegateContainerRegistrations([
|
||||
|
@ -154,8 +144,6 @@ class RegistrationContextTest extends TestCase {
|
|||
$container->expects($this->once())
|
||||
->method('registerMiddleware')
|
||||
->with($name);
|
||||
$this->logger->expects($this->never())
|
||||
->method('logException');
|
||||
|
||||
$this->context->for('myapp')->registerMiddleware($name);
|
||||
$this->context->delegateMiddlewareRegistrations([
|
||||
|
|
|
@ -506,7 +506,7 @@ class SecurityMiddlewareTest extends \Test\TestCase {
|
|||
->willReturn('http://localhost/nextcloud/index.php/login?redirect_url=nextcloud/index.php/apps/specialapp');
|
||||
$this->logger
|
||||
->expects($this->once())
|
||||
->method('logException');
|
||||
->method('debug');
|
||||
$response = $this->middleware->afterException(
|
||||
$this->controller,
|
||||
'test',
|
||||
|
@ -576,7 +576,7 @@ class SecurityMiddlewareTest extends \Test\TestCase {
|
|||
$this->middleware = $this->getMiddleware(false, false, false);
|
||||
$this->logger
|
||||
->expects($this->once())
|
||||
->method('logException');
|
||||
->method('debug');
|
||||
$response = $this->middleware->afterException(
|
||||
$this->controller,
|
||||
'test',
|
||||
|
|
|
@ -149,7 +149,7 @@ class CapabilitiesManagerTest extends TestCase {
|
|||
});
|
||||
|
||||
$this->logger->expects($this->once())
|
||||
->method('logException');
|
||||
->method('error');
|
||||
|
||||
$res = $this->manager->getCapabilities();
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ class ProviderManagerTest extends TestCase {
|
|||
->willThrowException(new QueryException('A meaningful error message'));
|
||||
|
||||
$this->logger->expects($this->once())
|
||||
->method('logException');
|
||||
->method('error');
|
||||
|
||||
$this->providerManager->registerResourceProvider('InvalidResourceProvider');
|
||||
$resourceProviders = $this->providerManager->getResourceProviders();
|
||||
|
@ -101,7 +101,7 @@ class ProviderManagerTest extends TestCase {
|
|||
->willReturn($this->createMock(ResourceProvider::class));
|
||||
|
||||
$this->logger->expects($this->once())
|
||||
->method('logException');
|
||||
->method('error');
|
||||
|
||||
$this->providerManager->registerResourceProvider('InvalidResourceProvider');
|
||||
$this->providerManager->registerResourceProvider(ResourceProvider::class);
|
||||
|
|
Loading…
Reference in New Issue