![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-vault/Test/Unit/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Vault\Test\Unit\Model; use Magento\Framework\ObjectManagerInterface; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Vault\Api\Data\PaymentTokenFactoryInterface; use Magento\Vault\Api\Data\PaymentTokenInterface; use Magento\Vault\Model\CreditCardTokenFactory; use Magento\Vault\Model\PaymentToken; use Magento\Vault\Model\PaymentTokenFactory; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class CreditCardTokenFactoryTest extends TestCase { /** * @var ObjectManagerInterface|MockObject */ private $objectManager; /** * @var PaymentToken */ private $paymentToken; /** * @var CreditCardTokenFactory */ private $factory; protected function setUp(): void { $objectManager = new ObjectManager($this); $tokenTypes = [ 'account' => PaymentTokenFactoryInterface::TOKEN_TYPE_ACCOUNT, 'credit_card' => PaymentTokenFactoryInterface::TOKEN_TYPE_CREDIT_CARD ]; $this->paymentToken = $objectManager->getObject(PaymentToken::class); $this->objectManager = $this->getMockForAbstractClass(ObjectManagerInterface::class); $paymentTokenFactory = new PaymentTokenFactory($this->objectManager, $tokenTypes); $this->factory = new CreditCardTokenFactory($this->objectManager, $paymentTokenFactory); } /** * @covers \Magento\Vault\Model\CreditCardTokenFactory::create */ public function testCreate() { $this->objectManager->expects(static::once()) ->method('create') ->willReturn($this->paymentToken); $this->paymentToken->setType(PaymentTokenFactoryInterface::TOKEN_TYPE_CREDIT_CARD); /** @var PaymentTokenInterface $paymentToken */ $paymentToken = $this->factory->create(); static::assertInstanceOf(PaymentTokenInterface::class, $paymentToken); static::assertEquals(CreditCardTokenFactory::TOKEN_TYPE_CREDIT_CARD, $paymentToken->getType()); } }