Adjust unit tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
03b140c008
commit
eff7a9c904
2 changed files with 11 additions and 7 deletions
|
@ -104,6 +104,7 @@ class AdminTest extends TestCase {
|
|||
->willReturn([
|
||||
'updateAvailable' => true,
|
||||
'updateVersion' => '8.1.2',
|
||||
'updateVersionString' => 'Nextcloud 8.1.2',
|
||||
'downloadLink' => 'https://downloads.nextcloud.org/server',
|
||||
'changes' => [],
|
||||
'updaterEnabled' => true,
|
||||
|
@ -129,7 +130,8 @@ class AdminTest extends TestCase {
|
|||
'lastChecked' => 'LastCheckedReturnValue',
|
||||
'currentChannel' => Util::getChannel(),
|
||||
'channels' => $channels,
|
||||
'newVersionString' => '8.1.2',
|
||||
'newVersion' => '8.1.2',
|
||||
'newVersionString' => 'Nextcloud 8.1.2',
|
||||
'downloadLink' => 'https://downloads.nextcloud.org/server',
|
||||
'changes' => [],
|
||||
'updaterEnabled' => true,
|
||||
|
|
|
@ -51,8 +51,8 @@ class UpdateCheckerTest extends TestCase {
|
|||
->expects($this->once())
|
||||
->method('check')
|
||||
->willReturn([
|
||||
'version' => 123,
|
||||
'versionstring' => 'Nextcloud 123',
|
||||
'version' => '1.2.3',
|
||||
'versionstring' => 'Nextcloud 1.2.3',
|
||||
'web'=> 'javascript:alert(1)',
|
||||
'url'=> 'javascript:alert(2)',
|
||||
'changes' => 'javascript:alert(3)',
|
||||
|
@ -62,7 +62,8 @@ class UpdateCheckerTest extends TestCase {
|
|||
|
||||
$expected = [
|
||||
'updateAvailable' => true,
|
||||
'updateVersion' => 'Nextcloud 123',
|
||||
'updateVersion' => '1.2.3',
|
||||
'updateVersionString' => 'Nextcloud 1.2.3',
|
||||
'updaterEnabled' => false,
|
||||
'versionIsEol' => true,
|
||||
];
|
||||
|
@ -91,8 +92,8 @@ class UpdateCheckerTest extends TestCase {
|
|||
->expects($this->once())
|
||||
->method('check')
|
||||
->willReturn([
|
||||
'version' => '123',
|
||||
'versionstring' => 'Nextcloud 123',
|
||||
'version' => '1.2.3',
|
||||
'versionstring' => 'Nextcloud 1.2.3',
|
||||
'web'=> 'https://docs.nextcloud.com/myUrl',
|
||||
'url'=> 'https://downloads.nextcloud.org/server',
|
||||
'changes' => 'https://updates.nextcloud.com/changelog_server/?version=123.0.0',
|
||||
|
@ -106,7 +107,8 @@ class UpdateCheckerTest extends TestCase {
|
|||
|
||||
$expected = [
|
||||
'updateAvailable' => true,
|
||||
'updateVersion' => 'Nextcloud 123',
|
||||
'updateVersion' => '1.2.3',
|
||||
'updateVersionString' => 'Nextcloud 1.2.3',
|
||||
'updaterEnabled' => true,
|
||||
'versionIsEol' => false,
|
||||
'updateLink' => 'https://docs.nextcloud.com/myUrl',
|
||||
|
|
Loading…
Reference in a new issue