Spamworldpro Mini Shell
Spamworldpro


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-adobe-ims/Test/Unit/Model/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/old/vendor/magento/module-adobe-ims/Test/Unit/Model/FlushUserTokensTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\AdobeIms\Test\Unit\Model;

use Magento\AdobeIms\Model\FlushUserTokens;
use Magento\AdobeImsApi\Api\Data\UserProfileInterface;
use Magento\AdobeImsApi\Api\UserProfileRepositoryInterface;
use Magento\Authorization\Model\UserContextInterface;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

/**
 * User flush token test.
 */
class FlushUserTokensTest extends TestCase
{

    /**
     * @var UserProfileRepositoryInterface|MockObject $userProfileRepository
     */
    private $userProfileRepository;

    /**
     * @var MockObject|UserContextInterface $userContext
     */
    private $userContext;

    /**
     * @var FlushUserTokens $flushTokens
     */
    private $flushTokens;

    /**
     * Prepare test objects.
     */
    protected function setUp(): void
    {
        $this->userContext = $this->createMock(UserContextInterface::class);
        $this->userProfileRepository = $this->createMock(UserProfileRepositoryInterface::class);

        $this->flushTokens = new FlushUserTokens(
            $this->userContext,
            $this->userProfileRepository
        );
    }

    /**
     * Test flush tokens
     */
    public function testExecute(): void
    {
        $this->userContext->expects($this->once())->method('getUserId')->willReturn(1);
        $userProfileMock = $this->createMock(UserProfileInterface::class);
        $userProfileMock->method('getAccessToken')->willReturn('access-token');
        $userProfileMock->method('getRefreshToken')->willReturn('request-token');
        $this->userProfileRepository->expects($this->exactly(1))
            ->method('getByUserId')
            ->willReturn($userProfileMock);
        $userProfileMock->expects($this->once())->method('setAccessToken')->willReturnSelf();
        $userProfileMock->expects($this->once())->method('setRefreshToken')->willReturnSelf();
        $this->userProfileRepository->expects($this->once())->method('save')
            ->with($userProfileMock)->willReturnSelf();
        $this->flushTokens->execute();
    }

    /**
     * Test execute with empty tokens
     */
    public function testExecuteEmptyTokens(): void
    {
        $this->userContext->expects($this->once())->method('getUserId')->willReturn(1);
        $userProfileMock = $this->createMock(UserProfileInterface::class);
        $userProfileMock->method('getAccessToken')->willReturn('');
        $userProfileMock->method('getRefreshToken')->willReturn('');
        $this->userProfileRepository->expects($this->exactly(1))
            ->method('getByUserId')
            ->willReturn($userProfileMock);

        $userProfileMock->expects($this->never())->method('setAccessToken')->willReturnSelf();
        $userProfileMock->expects($this->never())->method('setRefreshToken')->willReturnSelf();
        $this->userProfileRepository->expects($this->never())->method('save')
            ->with($userProfileMock)->willReturnSelf();
        $this->flushTokens->execute();
    }
}

Spamworldpro Mini