![]() 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/Customer/Block/Widget/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Customer\Block\Widget; use Magento\TestFramework\Helper\Bootstrap; /** * @magentoAppArea frontend */ class GenderTest extends \PHPUnit\Framework\TestCase { /** @var Gender */ protected $_block; /** @var \Magento\Customer\Model\Attribute */ private $_model; /** * Test initialization and set up. Create the Gender block. * @return void */ protected function setUp(): void { $objectManager = Bootstrap::getObjectManager(); $objectManager->get(\Magento\Framework\App\State::class)->setAreaCode('frontend'); $this->_block = $objectManager->get( \Magento\Framework\View\LayoutInterface::class )->createBlock( \Magento\Customer\Block\Widget\Gender::class ); $this->_model = $objectManager->create(\Magento\Customer\Model\Attribute::class); $this->_model->loadByCode('customer', 'gender'); } /** * Test the Gender::getGenderOptions() method. * @return void */ public function testGetGenderOptions() { $options = $this->_block->getGenderOptions(); $this->assertIsArray($options); $this->assertNotEmpty($options); $this->assertContainsOnlyInstancesOf(\Magento\Customer\Model\Data\Option::class, $options); } /** * Test the Gender::toHtml() method. * @return void */ public function testToHtml() { $html = $this->_block->toHtml(); $attributeLabel = $this->_model->getStoreLabel(); $this->assertStringContainsString('<span>' . $attributeLabel . '</span>', $html); $this->assertStringContainsString('<option value="1">Male</option>', $html); $this->assertStringContainsString('<option value="2">Female</option>', $html); $this->assertStringContainsString('<option value="3">Not Specified</option>', $html); } }