]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix unit tests 21597/head
authorJoas Schilling <coding@schilljs.com>
Fri, 26 Jun 2020 14:13:09 +0000 (16:13 +0200)
committerJoas Schilling <coding@schilljs.com>
Fri, 26 Jun 2020 14:13:09 +0000 (16:13 +0200)
Signed-off-by: Joas Schilling <coding@schilljs.com>
tests/lib/Command/Integrity/SignAppTest.php
tests/lib/Command/Integrity/SignCoreTest.php

index 594d17168d6fb17432dd946e5e1910e6033b822d..6802542914fe866922712c5756a8e7e206bcd5cf 100644 (file)
@@ -76,7 +76,7 @@ class SignAppTest extends TestCase {
                        ->method('writeln')
                        ->with('This command requires the --path, --privateKey and --certificate.');
 
-               $this->assertNull(self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithMissingPrivateKey() {
@@ -104,7 +104,7 @@ class SignAppTest extends TestCase {
                                ->method('writeln')
                                ->with('This command requires the --path, --privateKey and --certificate.');
 
-               $this->assertNull(self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithMissingCertificate() {
@@ -132,7 +132,7 @@ class SignAppTest extends TestCase {
                        ->method('writeln')
                        ->with('This command requires the --path, --privateKey and --certificate.');
 
-               $this->assertNull(self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithNotExistingPrivateKey() {
@@ -166,7 +166,7 @@ class SignAppTest extends TestCase {
                        ->method('writeln')
                        ->with('Private key "privateKey" does not exists.');
 
-               $this->assertNull(self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithNotExistingCertificate() {
@@ -205,7 +205,7 @@ class SignAppTest extends TestCase {
                        ->method('writeln')
                        ->with('Certificate "certificate" does not exists.');
 
-               $this->assertNull(self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signApp, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithException() {
index 36376ef0e7dd4973da5022f2ae12900ae0058bd9..27e4f66c24219d762a5284bd6c64f00e40bd07c5 100644 (file)
@@ -66,7 +66,7 @@ class SignCoreTest extends TestCase {
                        ->method('writeln')
                        ->with('--privateKey, --certificate and --path are required.');
 
-               $this->assertNull(self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithMissingCertificate() {
@@ -89,7 +89,7 @@ class SignCoreTest extends TestCase {
                        ->method('writeln')
                        ->with('--privateKey, --certificate and --path are required.');
 
-               $this->assertNull(self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithNotExistingPrivateKey() {
@@ -123,7 +123,7 @@ class SignCoreTest extends TestCase {
                        ->method('writeln')
                        ->with('Private key "privateKey" does not exists.');
 
-               $this->assertNull(self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithNotExistingCertificate() {
@@ -162,7 +162,7 @@ class SignCoreTest extends TestCase {
                        ->method('writeln')
                        ->with('Certificate "certificate" does not exists.');
 
-               $this->assertNull(self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
+               $this->assertSame(1, self::invokePrivate($this->signCore, 'execute', [$inputInterface, $outputInterface]));
        }
 
        public function testExecuteWithException() {