64 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?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);
 | 
						|
    }
 | 
						|
}
 |