![]() 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-catalog/Test/Unit/Setup/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Catalog\Test\Unit\Setup; use Magento\Catalog\Setup\CategorySetup; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use PHPUnit\Framework\TestCase; class CategorySetupTest extends TestCase { /** @var CategorySetup */ protected $unit; protected function setUp(): void { $this->unit = (new ObjectManager($this))->getObject( CategorySetup::class ); } public function testGetDefaultEntitiesContainAllAttributes() { $defaultEntities = $this->unit->getDefaultEntities(); $this->assertEquals( [ 'name', 'is_active', 'description', 'image', 'meta_title', 'meta_keywords', 'meta_description', 'display_mode', 'landing_page', 'is_anchor', 'path', 'position', 'all_children', 'path_in_store', 'children', 'custom_design', 'custom_design_from', 'custom_design_to', 'page_layout', 'custom_layout_update', 'level', 'children_count', 'available_sort_by', 'default_sort_by', 'include_in_menu', 'custom_use_parent_settings', 'custom_apply_to_products', 'filter_price_range', ], array_keys($defaultEntities['catalog_category']['attributes']) ); $this->assertEquals( [ 'name', 'sku', 'description', 'short_description', 'price', 'special_price', 'special_from_date', 'special_to_date', 'cost', 'weight', 'manufacturer', 'meta_title', 'meta_keyword', 'meta_description', 'image', 'small_image', 'thumbnail', 'media_gallery', 'old_id', 'tier_price', 'color', 'news_from_date', 'news_to_date', 'gallery', 'status', 'minimal_price', 'visibility', 'custom_design', 'custom_design_from', 'custom_design_to', 'custom_layout_update', 'page_layout', 'category_ids', 'options_container', 'required_options', 'has_options', 'image_label', 'small_image_label', 'thumbnail_label', 'created_at', 'updated_at', 'country_of_manufacture', 'quantity_and_stock_status', ], array_keys($defaultEntities['catalog_product']['attributes']) ); } }