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/api-functional/testsuite/Magento/GraphQl/Store/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/dev/tests/api-functional/testsuite/Magento/GraphQl/Store/StoreSaveTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\GraphQl\Store;

use Magento\TestFramework\Helper\Bootstrap;
use Magento\TestFramework\TestCase\GraphQlAbstract;

/**
 * Store save tests
 *
 * @magentoAppIsolation enabled
 * @magentoDbIsolation disabled
 */
class StoreSaveTest extends GraphQlAbstract
{
    /**
     * Test a product from newly created store
     *
     * @magentoApiDataFixture Magento/Store/_files/second_store.php
     * @magentoApiDataFixture Magento/Catalog/_files/category_product.php
     * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
     */
    public function testProductVisibleInNewStore()
    {
        $newStoreCode = 'fixture_second_store';
        $this->assertCategory($newStoreCode);
        $this->assertProduct($newStoreCode);
    }

    /**
     * Test product in store.
     *
     * @param string $storeCodeFromFixture
     * @throws \Exception
     */
    private function assertProduct(string $storeCodeFromFixture)
    {
        $productSku = 'simple333';
        $productNameInFixtureStore = 'Simple Product Three';

        $productsQuery = <<<QUERY
{
  products(filter: { sku: { eq: "%s" } }, sort: { name: ASC }) {
    items {
      id
      sku
      name
    }
  }
}
QUERY;
        $headerMap = ['Store' => $storeCodeFromFixture];
        $response = $this->graphQlQuery(
            sprintf($productsQuery, $productSku),
            [],
            '',
            $headerMap
        );
        $this->assertCount(
            1,
            $response['products']['items'],
            sprintf('Product with sku "%s" not found in store "%s"', $productSku, $storeCodeFromFixture)
        );
        $this->assertEquals(
            $productNameInFixtureStore,
            $response['products']['items'][0]['name'],
            'Product name in fixture store is invalid.'
        );
    }

    /**
     * Test category in store.
     *
     * @param string $storeCodeFromFixture
     * @throws \Exception
     */
    private function assertCategory(string $storeCodeFromFixture)
    {
        $categoryName = 'Category 1';
        $categoryQuery = <<<QUERY
{
    categoryList(filters: {name: {match: "%s"}}){
        id
        name
        url_key
        url_path
        children_count
        path
        position
    }
}
QUERY;
        $headerMap = ['Store' => $storeCodeFromFixture];
        $response = $this->graphQlQuery(
            sprintf($categoryQuery, $categoryName),
            [],
            '',
            $headerMap
        );
        $this->assertCount(
            1,
            $response['categoryList'],
            sprintf('Category with name "%s" not found in store "%s"', $categoryName, $storeCodeFromFixture)
        );
        $this->assertEquals(
            $categoryName,
            $response['categoryList'][0]['name'],
            'Category name in fixture store is invalid.'
        );
    }
}

Spamworldpro Mini