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

ImapTestAccount.php « Framework « Integration « tests - github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0189884e12db9b511921cf69a35d125bfc3ff36e (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
<?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\Integration\Framework;

use OC;
use OCA\Mail\Account;
use OCA\Mail\Db\MailAccount;
use OCA\Mail\IMAP\MailboxSync;
use OCA\Mail\Service\AccountService;
use Psr\Log\NullLogger;

trait ImapTestAccount {

	/**
	 * @return string
	 */
	public function getTestAccountUserId() {
		return 'user12345';
	}

	/**
	 * Create and persist a new mail account
	 *
	 * @return MailAccount
	 */
	public function createTestAccount() {
		/* @var $accountService AccountService */
		$accountService = OC::$server->query(AccountService::class);

		$mailAccount = new MailAccount();
		$mailAccount->setUserId($this->getTestAccountUserId());
		$mailAccount->setEmail('user@domain.tld');
		$mailAccount->setInboundHost('localhost');
		$mailAccount->setInboundPort(993);
		$mailAccount->setInboundSslMode('ssl');
		$mailAccount->setInboundUser('user@domain.tld');
		$mailAccount->setInboundPassword(OC::$server->getCrypto()->encrypt('mypassword'));

		$mailAccount->setOutboundHost('localhost');
		$mailAccount->setOutboundPort(2525);
		$mailAccount->setOutboundUser('user@domain.tld');
		$mailAccount->setOutboundPassword(OC::$server->getCrypto()->encrypt('mypassword'));
		$mailAccount->setOutboundSslMode('none');
		$acc = $accountService->save($mailAccount);

		/** @var MailboxSync $mbSync */
		$mbSync = OC::$server->query(MailboxSync::class);
		$mbSync->sync(new Account($mailAccount), new NullLogger());

		return $acc;
	}
}