123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- declare(strict_types=1);
- namespace OCA\UpdateNotification\Tests;
- use OCA\UpdateNotification\ResetTokenBackgroundJob;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\IConfig;
- use Test\TestCase;
- class ResetTokenBackgroundJobTest extends TestCase {
-
- private $config;
-
- private $timeFactory;
-
- private $resetTokenBackgroundJob;
- protected function setUp(): void {
- parent::setUp();
- $this->config = $this->createMock(IConfig::class);
- $this->timeFactory = $this->createMock(ITimeFactory::class);
- $this->resetTokenBackgroundJob = new ResetTokenBackgroundJob($this->config, $this->timeFactory);
- }
- public function testRunWithNotExpiredToken() {
- $this->timeFactory
- ->expects($this->atLeastOnce())
- ->method('getTime')
- ->willReturn(123);
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('core', 'updater.secret.created', 123);
- $this->config
- ->expects($this->once())
- ->method('getSystemValueBool')
- ->with('config_is_read_only')
- ->willReturn(false);
- $this->config
- ->expects($this->never())
- ->method('deleteSystemValue');
- static::invokePrivate($this->resetTokenBackgroundJob, 'run', [null]);
- }
- public function testRunWithExpiredToken() {
- $this->timeFactory
- ->expects($this->exactly(2))
- ->method('getTime')
- ->willReturnOnConsecutiveCalls(1455131633, 1455045234);
- $this->config
- ->expects($this->once())
- ->method('getAppValue')
- ->with('core', 'updater.secret.created', 1455045234);
- $this->config
- ->expects($this->once())
- ->method('deleteSystemValue')
- ->with('updater.secret');
- static::invokePrivate($this->resetTokenBackgroundJob, 'run', [null]);
- }
- public function testRunWithExpiredTokenAndReadOnlyConfigFile() {
- $this->timeFactory
- ->expects($this->never())
- ->method('getTime');
- $this->config
- ->expects($this->never())
- ->method('getAppValue');
- $this->config
- ->expects($this->once())
- ->method('getSystemValueBool')
- ->with('config_is_read_only')
- ->willReturn(true);
- $this->config
- ->expects($this->never())
- ->method('deleteSystemValue');
- static::invokePrivate($this->resetTokenBackgroundJob, 'run', [null]);
- }
- }
|