PageTest.php 1.24 KB
Newer Older
Ketan's avatar
Ketan committed
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
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Sitemap\Model\ResourceModel\Cms;

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

/**
 * Provide tests for Cms Page resource model.
 */
class PageTest extends TestCase
{
    /**
     * Test subject.
     *
     * @var Page
     */
    private $page;

    /**
     * @inheritdoc
     */
    protected function setUp()
    {
        $this->page = Bootstrap::getObjectManager()->get(Page::class);
    }

    /**
     * Test Page::getCollection() will exclude home and no-route cms pages for site map.
     *
     * @magentoAppArea adminhtml
     * @magentoDataFixture Magento/Cms/_files/pages.php
     * @return void
     */
    public function testGetCollection()
    {
        $excludedUrls = ['no-route', 'home'];
        $storeManager = Bootstrap::getObjectManager()->get(StoreManagerInterface::class);
        $result = $this->page->getCollection($storeManager->getDefaultStoreView()->getId());
        $this->assertNotEmpty($result);
        foreach ($result as $item) {
            $this->assertFalse(in_array($item->getUrl(), $excludedUrls));
        }
    }
}