123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Test\Unit\Controller\Account;
- class CreateTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Customer\Controller\Account\Create
- */
- protected $object;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $customerSession;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $registrationMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $redirectMock;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject
- */
- protected $response;
- /**
- * @var \Magento\Framework\Controller\Result\RedirectFactory|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $redirectFactoryMock;
- /**
- * @var \Magento\Framework\Controller\Result\Redirect|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $redirectResultMock;
- /**
- * @var \Magento\Framework\View\Result\Page|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $resultPageMock;
- /**
- * @var \Magento\Framework\View\Result\PageFactory|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $pageFactoryMock;
- protected function setUp()
- {
- $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
- $this->customerSession = $this->createMock(\Magento\Customer\Model\Session::class);
- $this->registrationMock = $this->createMock(\Magento\Customer\Model\Registration::class);
- $this->redirectMock = $this->createMock(\Magento\Framework\App\Response\RedirectInterface::class);
- $this->response = $this->createMock(\Magento\Framework\App\ResponseInterface::class);
- $this->request = $this->getMockBuilder(\Magento\Framework\App\Request\Http::class)
- ->disableOriginalConstructor()->getMock();
- $this->redirectResultMock = $this->createMock(\Magento\Framework\Controller\Result\Redirect::class);
- $this->redirectFactoryMock = $this->createPartialMock(
- \Magento\Framework\Controller\Result\RedirectFactory::class,
- ['create']
- );
- $this->resultPageMock = $this->createMock(\Magento\Framework\View\Result\Page::class);
- $this->pageFactoryMock = $this->createMock(\Magento\Framework\View\Result\PageFactory::class);
- $this->object = $objectManager->getObject(
- \Magento\Customer\Controller\Account\Create::class,
- [
- 'request' => $this->request,
- 'response' => $this->response,
- 'customerSession' => $this->customerSession,
- 'registration' => $this->registrationMock,
- 'redirect' => $this->redirectMock,
- 'resultRedirectFactory' => $this->redirectFactoryMock,
- 'resultPageFactory' => $this->pageFactoryMock
- ]
- );
- }
- /**
- * @return void
- */
- public function testCreateActionRegistrationDisabled()
- {
- $this->customerSession->expects($this->once())
- ->method('isLoggedIn')
- ->will($this->returnValue(false));
- $this->registrationMock->expects($this->once())
- ->method('isAllowed')
- ->will($this->returnValue(false));
- $this->redirectFactoryMock->expects($this->once())
- ->method('create')
- ->willReturn($this->redirectResultMock);
- $this->redirectResultMock->expects($this->once())
- ->method('setPath')
- ->with('*/*')
- ->willReturnSelf();
- $this->resultPageMock->expects($this->never())
- ->method('getLayout');
- $this->object->execute();
- }
- /**
- * @return void
- */
- public function testCreateActionRegistrationEnabled()
- {
- $this->customerSession->expects($this->once())
- ->method('isLoggedIn')
- ->will($this->returnValue(false));
- $this->registrationMock->expects($this->once())
- ->method('isAllowed')
- ->will($this->returnValue(true));
- $this->redirectMock->expects($this->never())
- ->method('redirect');
- $this->pageFactoryMock->expects($this->once())
- ->method('create')
- ->willReturn($this->resultPageMock);
- $this->object->execute();
- }
- }
|