Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2021-06-04 21:34:58 +0300
committerGitHub <noreply@github.com>2021-06-04 21:34:58 +0300
commit076dd6e2fe03a8e6121af17be45761b7ddfb910e (patch)
tree32e3d821438360ab1fe484a2185daf5bba733b2f /tests
parent13908e741de6cff4d2743cc1ddaf33f1fb4f2880 (diff)
parente451ad6781fad09729f6cd0f06f24a750871b94e (diff)
Merge pull request #5111 from nextcloud/fix/disabled-user-no-background-sync
Do not run background syncs for disabled users
Diffstat (limited to 'tests')
-rw-r--r--tests/Unit/BackgroundJob/SyncJobTest.php128
1 files changed, 128 insertions, 0 deletions
diff --git a/tests/Unit/BackgroundJob/SyncJobTest.php b/tests/Unit/BackgroundJob/SyncJobTest.php
new file mode 100644
index 000000000..31ceaf03f
--- /dev/null
+++ b/tests/Unit/BackgroundJob/SyncJobTest.php
@@ -0,0 +1,128 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * @copyright 2021 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2021 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+namespace OCA\Mail\Tests\Unit\BackgroundJob;
+
+use ChristophWurst\Nextcloud\Testing\ServiceMockObject;
+use ChristophWurst\Nextcloud\Testing\TestCase;
+use OC\BackgroundJob\JobList;
+use OCA\Mail\Account;
+use OCA\Mail\BackgroundJob\SyncJob;
+use OCP\AppFramework\Db\DoesNotExistException;
+use OCP\ILogger;
+use OCP\IUser;
+
+class SyncJobTest extends TestCase {
+
+ /** @var ServiceMockObject*/
+ private $serviceMock;
+
+ /** @var SyncJob */
+ private $job;
+
+ protected function setUp(): void {
+ parent::setUp();
+
+ $this->serviceMock = $this->createServiceMock(SyncJob::class);
+ $this->job = $this->serviceMock->getService();
+
+ // Make sure the job is actually run
+ $this->serviceMock->getParameter('time')
+ ->method('getTime')
+ ->willReturn(500000);
+ // Set our common argument
+ $this->job->setArgument([
+ 'accountId' => 123,
+ ]);
+ // Set a fake ID
+ $this->job->setId(99);
+ }
+
+ public function testAccountDoesntExist(): void {
+ $this->serviceMock->getParameter('accountService')
+ ->expects(self::once())
+ ->method('findById')
+ ->with(123)
+ ->willThrowException(new DoesNotExistException(''));
+ $this->serviceMock->getParameter('logger')
+ ->expects(self::once())
+ ->method('debug')
+ ->with('Could not find account <123> removing from jobs');
+ $this->serviceMock->getParameter('jobList')
+ ->expects(self::once())
+ ->method('remove')
+ ->with(SyncJob::class, ['accountId' => 123]);
+ $this->serviceMock->getParameter('mailboxSync')
+ ->expects(self::never())
+ ->method('sync');
+ $this->serviceMock->getParameter('syncService')
+ ->expects(self::never())
+ ->method('syncAccount');
+
+ $this->job->setArgument([
+ 'accountId' => 123,
+ ]);
+ $this->job->setLastRun(0);
+ $this->job->execute(
+ $this->createMock(JobList::class),
+ $this->createMock(ILogger::class)
+ );
+ }
+
+ public function testUserDoesntExist(): void {
+ $account = $this->createMock(Account::class);
+ $account->method('getId')->willReturn(123);
+ $account->method('getUserId')->willReturn('user123');
+ $this->serviceMock->getParameter('accountService')
+ ->expects(self::once())
+ ->method('findById')
+ ->with(123)
+ ->willReturn($account);
+ $user = $this->createMock(IUser::class);
+ $this->serviceMock->getParameter('userManager')
+ ->expects(self::once())
+ ->method('get')
+ ->with('user123')
+ ->willReturn($user);
+ $this->serviceMock->getParameter('logger')
+ ->expects(self::once())
+ ->method('debug')
+ ->with('Account 123 of user user123 could not be found or was disabled, skipping background sync');
+ $this->serviceMock->getParameter('mailboxSync')
+ ->expects(self::never())
+ ->method('sync');
+ $this->serviceMock->getParameter('syncService')
+ ->expects(self::never())
+ ->method('syncAccount');
+
+ $this->job->setArgument([
+ 'accountId' => 123,
+ ]);
+ $this->job->execute(
+ $this->createMock(JobList::class),
+ $this->createMock(ILogger::class)
+ );
+ }
+}