Fix subscription tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-06-13 20:23:29 +02:00
parent df072471a7
commit d5805df6c2
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
2 changed files with 14 additions and 0 deletions

View File

@ -97,6 +97,7 @@ class OCSControllerTest extends TestCase {
'micro' => $micro, 'micro' => $micro,
'string' => \OC_Util::getVersionString(), 'string' => \OC_Util::getVersionString(),
'edition' => '', 'edition' => '',
'extendedSupport' => false
); );
$capabilities = [ $capabilities = [
@ -128,6 +129,7 @@ class OCSControllerTest extends TestCase {
'micro' => $micro, 'micro' => $micro,
'string' => \OC_Util::getVersionString(), 'string' => \OC_Util::getVersionString(),
'edition' => '', 'edition' => '',
'extendedSupport' => false
); );
$capabilities = [ $capabilities = [

View File

@ -74,6 +74,18 @@ class RegistryTest extends TestCase {
$this->assertSame(true, $this->registry->delegateHasValidSubscription()); $this->assertSame(true, $this->registry->delegateHasValidSubscription());
} }
public function testDelegateHasExtendedSupport() {
/* @var ISubscription|\PHPUnit_Framework_MockObject_MockObject $subscription */
$subscription = $this->createMock(ISubscription::class);
$subscription->expects($this->once())
->method('hasExtendedSupport')
->willReturn(true);
$this->registry->register($subscription);
$this->assertSame(true, $this->registry->delegateHasExtendedSupport());
}
public function testDelegateGetSupportedApps() { public function testDelegateGetSupportedApps() {
/* @var ISupportedApps|\PHPUnit_Framework_MockObject_MockObject $subscription */ /* @var ISupportedApps|\PHPUnit_Framework_MockObject_MockObject $subscription */
$subscription = $this->createMock(ISupportedApps::class); $subscription = $this->createMock(ISupportedApps::class);