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

SimpleMailboxSyncTest.php « Sync « IMAP « Unit « tests - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59aa4e2ba1afd81ddba99fd49861170c02aa6de7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php

/**
 * @author Christoph Wurst <christoph@winzerhof-wurst.at>
 *
 * Mail
 *
 * This code is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License, version 3,
 * as published by the Free Software Foundation.
 *
 * 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, version 3,
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 *
 */

namespace OCA\Mail\Tests\Unit\IMAP\Sync;

use ChristophWurst\Nextcloud\Testing\TestCase;
use Horde_Imap_Client_Base;
use Horde_Imap_Client_Data_Sync;
use Horde_Imap_Client_Ids;
use OCA\Mail\IMAP\MessageMapper;
use OCA\Mail\IMAP\Sync\Request;
use OCA\Mail\IMAP\Sync\SimpleMailboxSync;
use OCA\Mail\Model\IMAPMessage;
use PHPUnit_Framework_MockObject_MockObject;

class SimpleMailboxSyncTest extends TestCase {

	/** @var MessageMapper|PHPUnit_Framework_MockObject_MockObject */
	private $mapper;

	/** @var Horde_Imap_Client_Base|PHPUnit_Framework_MockObject_MockObject */
	private $imapClient;

	/** @var Request|PHPUnit_Framework_MockObject_MockObject */
	private $syncRequest;

	/** @var Horde_Imap_Client_Data_Sync|PHPUnit_Framework_MockObject_MockObject */
	private $hordeSync;

	/** @var SimpleMailboxSync */
	private $sync;

	protected function setUp(): void {
		parent::setUp();

		$this->mapper = $this->createMock(MessageMapper::class);
		$this->imapClient = $this->createMock(Horde_Imap_Client_Base::class);
		$this->syncRequest = $this->createMock(Request::class);
		$this->hordeSync = $this->createMock(Horde_Imap_Client_Data_Sync::class);

		$this->sync = new SimpleMailboxSync($this->mapper);
	}

	public function testGetNewMessages() {
		$this->syncRequest->expects($this->once())
			->method('getMailbox')
			->willReturn('inbox');
		$this->hordeSync->newmsgsuids = $this->createMock(Horde_Imap_Client_Ids::class);
		$this->hordeSync->newmsgsuids->ids = [23, 24];
		$this->mapper->expects($this->once())
			->method('findByIds')
			->with($this->equalTo($this->imapClient), $this->equalTo('inbox'), $this->equalTo([23, 24]))
			->willReturn([
				$this->createMock(IMAPMessage::class),
				$this->createMock(IMAPMessage::class),
		]);

		$messages = $this->sync->getNewMessages($this->imapClient, $this->syncRequest, $this->hordeSync);

		$this->assertCount(2, $messages);
	}

	public function testGetChangedMessages() {
		$this->syncRequest->expects($this->once())
			->method('getMailbox')
			->willReturn('inbox');
		$this->hordeSync->flagsuids = $this->createMock(Horde_Imap_Client_Ids::class);
		$this->hordeSync->flagsuids->ids = [23, 24];
		$this->mapper->expects($this->once())
			->method('findByIds')
			->with($this->equalTo($this->imapClient), $this->equalTo('inbox'), $this->equalTo([23, 24]))
			->willReturn([
				$this->createMock(IMAPMessage::class),
				$this->createMock(IMAPMessage::class),
		]);

		$messages = $this->sync->getChangedMessages($this->imapClient, $this->syncRequest, $this->hordeSync);

		$this->assertCount(2, $messages);
	}

	public function testGetVanishedMessages() {
		$this->hordeSync->vanisheduids = $this->createMock(Horde_Imap_Client_Ids::class);
		$this->hordeSync->vanisheduids->ids = [23, 24];

		$ids = $this->sync->getVanishedMessages($this->imapClient, $this->syncRequest, $this->hordeSync);

		$this->assertEquals([23, 24], $ids);
	}

}