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