| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * ControllerAuthorizeTest file
- *
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Auth;
- use Cake\Auth\ControllerAuthorize;
- use Cake\Controller\ComponentRegistry;
- use Cake\Controller\Controller;
- use Cake\Http\ServerRequest;
- use Cake\TestSuite\TestCase;
- /**
- * ControllerAuthorizeTest
- */
- class ControllerAuthorizeTest extends TestCase
- {
- /**
- * @var \Cake\Auth\ControllerAuthorize
- */
- protected $auth;
- /**
- * setup
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->controller = $this->getMockBuilder(Controller::class)
- ->setMethods(['isAuthorized'])
- ->disableOriginalConstructor()
- ->getMock();
- $this->components = $this->getMockBuilder(ComponentRegistry::class)->getMock();
- $this->components->expects($this->any())
- ->method('getController')
- ->will($this->returnValue($this->controller));
- $this->auth = new ControllerAuthorize($this->components);
- }
- /**
- * @return void
- */
- public function testControllerErrorOnMissingMethod()
- {
- $this->expectException(\Cake\Core\Exception\Exception::class);
- $this->auth->controller(new Controller());
- }
- /**
- * test failure
- *
- * @return void
- */
- public function testAuthorizeFailure()
- {
- $user = [];
- $request = new ServerRequest('/posts/index');
- $this->assertFalse($this->auth->authorize($user, $request));
- }
- /**
- * test isAuthorized working.
- *
- * @return void
- */
- public function testAuthorizeSuccess()
- {
- $user = ['User' => ['username' => 'mark']];
- $request = new ServerRequest('/posts/index');
- $this->controller->expects($this->once())
- ->method('isAuthorized')
- ->with($user)
- ->will($this->returnValue(true));
- $this->assertTrue($this->auth->authorize($user, $request));
- }
- }
|