attribute = $this->getMockBuilder('\Magento\Customer\Api\Data\AttributeMetadataInterface') ->getMockForAbstractClass(); $this->customerMetadata = $this->getMockBuilder('\Magento\Customer\Api\CustomerMetadataInterface') ->getMockForAbstractClass(); $this->customerMetadata->expects($this->any()) ->method('getAttributeMetadata') ->with(self::GENDER_ATTRIBUTE_CODE) ->will($this->returnValue($this->attribute)); $this->customerRepository = $this ->getMockBuilder('\Magento\Customer\Api\CustomerRepositoryInterface') ->getMockForAbstractClass(); $this->customerSession = $this->getMock('Magento\Customer\Model\Session', [], [], '', false); $this->block = new \Magento\Customer\Block\Widget\Gender( $this->getMock('Magento\Framework\View\Element\Template\Context', [], [], '', false), $this->getMock('Magento\Customer\Helper\Address', [], [], '', false), $this->customerMetadata, $this->customerRepository, $this->customerSession ); } /** * Test the Gender::isEnabled() method. * * @param bool $isVisible Determines whether the 'gender' attribute is visible or enabled * @param bool $expectedValue The value we expect from Gender::isEnabled() * @return void * * @dataProvider isEnabledDataProvider */ public function testIsEnabled($isVisible, $expectedValue) { $this->attribute->expects($this->once())->method('isVisible')->will($this->returnValue($isVisible)); $this->assertSame($expectedValue, $this->block->isEnabled()); } /** * The testIsEnabled data provider. * @return array */ public function isEnabledDataProvider() { return [[true, true], [false, false]]; } public function testIsEnabledWithException() { $this->customerMetadata->expects( $this->any() )->method( 'getAttributeMetadata' )->will( $this->throwException(new NoSuchEntityException( __( 'No such entity with %fieldName = %fieldValue', ['fieldName' => 'field', 'fieldValue' => 'value'] ) )) ); $this->assertSame(false, $this->block->isEnabled()); } /** * Test the Gender::isRequired() method. * * @param bool $isRequired Determines whether the 'gender' attribute is required * @param bool $expectedValue The value we expect from Gender::isRequired() * @return void * * @dataProvider isRequiredDataProvider */ public function testIsRequired($isRequired, $expectedValue) { $this->attribute->expects($this->once())->method('isRequired')->will($this->returnValue($isRequired)); $this->assertSame($expectedValue, $this->block->isRequired()); } /** * The testIsRequired data provider. * @return array */ public function isRequiredDataProvider() { return [[true, true], [false, false]]; } public function testIsRequiredWithException() { $this->customerMetadata->expects( $this->any() )->method( 'getAttributeMetadata' )->will( $this->throwException(new NoSuchEntityException( __( 'No such entity with %fieldName = %fieldValue', ['fieldName' => 'field', 'fieldValue' => 'value'] ) )) ); $this->assertSame(false, $this->block->isRequired()); } /** * Test the Gender::getCustomer() method. * @return void */ public function testGetCustomer() { $customerData = $this->getMockBuilder('\Magento\Customer\Api\Data\CustomerInterface') ->getMockForAbstractClass(); $this->customerSession->expects($this->once())->method('getCustomerId')->will($this->returnValue(1)); $this->customerRepository ->expects($this->once()) ->method('getById') ->with(1) ->will($this->returnValue($customerData)); $customer = $this->block->getCustomer(); $this->assertSame($customerData, $customer); } /** * Test the Gender::getGenderOptions() method. * @return void */ public function testGetGenderOptions() { $options = [ ['label' => __('Male'), 'value' => 'M'], ['label' => __('Female'), 'value' => 'F'], ['label' => __('Not Specified'), 'value' => 'NA'] ]; $this->attribute->expects($this->once())->method('getOptions')->will($this->returnValue($options)); $this->assertSame($options, $this->block->getGenderOptions()); } }