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
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-11-19 12:47:50 +0300
committerGretaD <gretadoci@gmail.com>2020-12-03 15:57:54 +0300
commit87d99c0e5629ae4551d3776bef554dd3c448aebf (patch)
treeccbd7bb5890fca25b51a10a824b0b4dcd9bf6ffc /tests/Integration
parent44a004276a21e57aeca78b71599b5ec3aa7d5d13 (diff)
Allow always showing images from trusted senders
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/Integration')
-rw-r--r--tests/Integration/Db/TrustedSenderMapperTest.php127
1 files changed, 127 insertions, 0 deletions
diff --git a/tests/Integration/Db/TrustedSenderMapperTest.php b/tests/Integration/Db/TrustedSenderMapperTest.php
new file mode 100644
index 000000000..c5bbbe845
--- /dev/null
+++ b/tests/Integration/Db/TrustedSenderMapperTest.php
@@ -0,0 +1,127 @@
+<?php
+
+declare(strict_types=1);
+
+/*
+ * @copyright 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2020 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\Integration\Db;
+
+use ChristophWurst\Nextcloud\Testing\DatabaseTransaction;
+use ChristophWurst\Nextcloud\Testing\TestCase;
+use ChristophWurst\Nextcloud\Testing\TestUser;
+use OCA\Mail\Db\TrustedSenderMapper;
+use OCP\IDBConnection;
+use OCP\IUser;
+
+class TrustedSenderMapperTest extends TestCase {
+ use DatabaseTransaction, TestUser;
+
+ /** @var IDBConnection */
+ private $db;
+
+ /** @var IUser */
+ private $user;
+
+ /** @var TrustedSenderMapper */
+ private $mapper;
+
+ protected function setUp(): void {
+ parent::setUp();
+
+ /** @var IDBConnection $db */
+ $this->db = \OC::$server->get(IDBConnection::class);
+ $this->user = $this->createTestUser();
+
+ $this->mapper = new TrustedSenderMapper(
+ $this->db
+ );
+ }
+
+ public function testExistsButDoesNot(): void {
+ $exists = $this->mapper->exists($this->user->getUID(), "christoph@next.cloud");
+
+ $this->assertFalse($exists);
+ }
+
+ public function testExists(): void {
+ $uid = $this->user->getUID();
+ $qb = $this->db->getQueryBuilder();
+ $qb->insert('mail_trusted_senders')
+ ->values([
+ 'user_id' => $qb->createNamedParameter($uid),
+ 'email' => $qb->createNamedParameter('christoph@next.cloud'),
+ ])
+ ->execute();
+
+ $exists = $this->mapper->exists($uid, "christoph@next.cloud");
+
+ $this->assertTrue($exists);
+ }
+
+ public function testCreate(): void {
+ $uid = $this->user->getUID();
+ $this->mapper->create(
+ $uid,
+ "christoph@next.cloud"
+ );
+
+ $qb = $this->db->getQueryBuilder();
+ $qb->select('*')
+ ->from('mail_trusted_senders')
+ ->where(
+ $qb->expr()->eq('user_id', $qb->createNamedParameter($uid)),
+ $qb->expr()->eq('email', $qb->createNamedParameter("christoph@next.cloud"))
+ );
+ $result = $qb->execute();
+ $rows = $result->fetchAll();
+ $result->closeCursor();
+ $this->assertCount(1, $rows);
+ }
+
+ public function testRemove(): void {
+ $uid = $this->user->getUID();
+ $qb = $this->db->getQueryBuilder();
+ $qb->insert('mail_trusted_senders')
+ ->values([
+ 'user_id' => $qb->createNamedParameter($uid),
+ 'email' => $qb->createNamedParameter('christoph@next.cloud'),
+ ])
+ ->execute();
+
+ $this->mapper->remove(
+ $uid,
+ "christoph@next.cloud"
+ );
+
+ $qb = $this->db->getQueryBuilder();
+ $qb->select('*')
+ ->from('mail_trusted_senders')
+ ->where(
+ $qb->expr()->eq('user_id', $qb->createNamedParameter($uid)),
+ $qb->expr()->eq('email', $qb->createNamedParameter("christoph@next.cloud"))
+ );
+ $result = $qb->execute();
+ $rows = $result->fetchAll();
+ $result->closeCursor();
+ $this->assertEmpty($rows);
+ }
+}