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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Test\Unit\Model;
use Magento\Customer\Model\AccountConfirmation;
use Magento\Store\Model\ScopeInterface;
use Magento\Framework\App\Config\ScopeConfigInterface;
use Magento\Framework\Registry;
/**
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class AccountConfirmationTest extends \PHPUnit\Framework\TestCase
{
/**
* @var AccountConfirmation|\PHPUnit_Framework_MockObject_MockObject
*/
private $accountConfirmation;
/**
* @var ScopeConfigInterface|\PHPUnit_Framework_MockObject_MockObject
*/
private $scopeConfig;
/**
* @var Registry|\PHPUnit_Framework_MockObject_MockObject
*/
private $registry;
protected function setUp()
{
$this->scopeConfig = $this->createMock(ScopeConfigInterface::class);
$this->registry = $this->createMock(Registry::class);
$this->accountConfirmation = new AccountConfirmation(
$this->scopeConfig,
$this->registry
);
}
/**
* @param $customerId
* @param $customerEmail
* @param $skipConfirmationIfEmail
* @param $isConfirmationEnabled
* @param $expected
* @dataProvider dataProviderIsConfirmationRequired
*/
public function testIsConfirmationRequired(
$customerId,
$customerEmail,
$skipConfirmationIfEmail,
$isConfirmationEnabled,
$expected
) {
$websiteId = 1;
$this->scopeConfig->expects($this->any())
->method('isSetFlag')
->with(
$this->accountConfirmation::XML_PATH_IS_CONFIRM,
ScopeInterface::SCOPE_WEBSITES,
$websiteId
)->willReturn($isConfirmationEnabled);
$this->registry->expects($this->any())
->method('registry')
->with('skip_confirmation_if_email')
->willReturn($skipConfirmationIfEmail);
self::assertEquals(
$expected,
$this->accountConfirmation->isConfirmationRequired($websiteId, $customerId, $customerEmail)
);
}
/**
* @return array
*/
public function dataProviderIsConfirmationRequired()
{
return [
[null, 'customer@example.com', null, true, true],
[null, 'customer@example.com', null, false, false],
[1, 'customer@example.com', 'customer@example.com', true, false],
[1, 'customer@example.com', 'customer1@example.com', false, false],
[1, 'customer@example.com', 'customer1@example.com', true, true],
];
}
}