| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- declare(strict_types=1);
- /**
- * 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\Controller\Controller|\PHPUnit\Framework\MockObject\MockObject
- */
- protected $controller;
- /**
- * @var \Cake\Auth\ControllerAuthorize
- */
- protected $auth;
- /**
- * setup
- */
- public function setUp(): void
- {
- parent::setUp();
- $this->controller = $this->getMockBuilder(Controller::class)
- ->addMethods(['isAuthorized'])
- ->disableOriginalConstructor()
- ->getMock();
- $components = new ComponentRegistry($this->controller);
- $this->auth = new ControllerAuthorize($components);
- }
- public function testControllerErrorOnMissingMethod(): void
- {
- $this->expectException(\Cake\Core\Exception\CakeException::class);
- $this->auth->controller(new Controller());
- $this->auth->authorize([], new ServerRequest());
- }
- /**
- * test failure
- */
- public function testAuthorizeFailure(): void
- {
- $user = [];
- $request = new ServerRequest(['url' => '/posts/index']);
- $this->assertFalse($this->auth->authorize($user, $request));
- }
- /**
- * test isAuthorized working.
- */
- public function testAuthorizeSuccess(): void
- {
- $user = ['User' => ['username' => 'mark']];
- $request = new ServerRequest(['url' => '/posts/index']);
- $this->controller->expects($this->once())
- ->method('isAuthorized')
- ->will($this->returnValue(true));
- $this->assertTrue($this->auth->authorize($user, $request));
- }
- }
|