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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Braintree\Test\Unit\Model\InstantPurchase;
use Magento\Braintree\Gateway\Command\GetPaymentNonceCommand;
use Magento\Braintree\Model\InstantPurchase\PaymentAdditionalInformationProvider;
use Magento\Payment\Gateway\Command\Result\ArrayResult;
use Magento\Vault\Api\Data\PaymentTokenInterface;
/**
* @covers \Magento\Braintree\Model\InstantPurchase\PaymentAdditionalInformationProvider
*/
class PaymentAdditionalInformationProviderTest extends \PHPUnit\Framework\TestCase
{
/**
* Testable Object
*
* @var PaymentAdditionalInformationProvider
*/
private $paymentAdditionalInformationProvider;
/**
* @var GetPaymentNonceCommand|\PHPUnit_Framework_MockObject_MockObject
*/
private $getPaymentNonceCommandMock;
/**
* @var PaymentTokenInterface|\PHPUnit_Framework_MockObject_MockObject
*/
private $paymentTokenMock;
/**
* @var ArrayResult|\PHPUnit_Framework_MockObject_MockObject
*/
private $arrayResultMock;
/**
* Set Up
*
* @return void
*/
protected function setUp()
{
$this->getPaymentNonceCommandMock = $this->createMock(GetPaymentNonceCommand::class);
$this->paymentTokenMock = $this->createMock(PaymentTokenInterface::class);
$this->arrayResultMock = $this->createMock(ArrayResult::class);
$this->paymentAdditionalInformationProvider = new PaymentAdditionalInformationProvider(
$this->getPaymentNonceCommandMock
);
}
/**
* Test getAdditionalInformation method
*
* @return void
*/
public function testGetAdditionalInformation()
{
$customerId = 15;
$publicHash = '3n4b7sn48g';
$paymentMethodNonce = 'test';
$this->paymentTokenMock->expects($this->once())->method('getCustomerId')->willReturn($customerId);
$this->paymentTokenMock->expects($this->once())->method('getPublicHash')->willReturn($publicHash);
$this->getPaymentNonceCommandMock->expects($this->once())->method('execute')->with([
PaymentTokenInterface::CUSTOMER_ID => $customerId,
PaymentTokenInterface::PUBLIC_HASH => $publicHash,
])->willReturn($this->arrayResultMock);
$this->arrayResultMock->expects($this->once())->method('get')
->willReturn(['paymentMethodNonce' => $paymentMethodNonce]);
$expected = [
'payment_method_nonce' => $paymentMethodNonce,
];
$actual = $this->paymentAdditionalInformationProvider->getAdditionalInformation($this->paymentTokenMock);
self::assertEquals($expected, $actual);
}
}