-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from haltuf/master
Add Secured as attribute for PHP >= 8.0
- Loading branch information
Showing
5 changed files
with
120 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace Nextras\Application\UI; | ||
|
||
use Attribute; | ||
|
||
|
||
#[Attribute(Attribute::TARGET_METHOD)] | ||
class Secured | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<?php | ||
/** | ||
* @phpVersion >= 8.0.0 | ||
*/ | ||
|
||
use Nette\Application\Request; | ||
use Nette\Application\Routers\SimpleRouter; | ||
use Nette\Application\UI\Control; | ||
use Nette\Application\UI\Presenter; | ||
use Nette\Http\Request as HttpRequest; | ||
use Nette\Http\Response; | ||
use Nette\Http\UrlScript; | ||
use Nextras\Application\UI\Secured; | ||
use Nextras\Application\UI\SecuredLinksControlTrait; | ||
use Nextras\Application\UI\SecuredLinksPresenterTrait; | ||
use Tester\Assert; | ||
|
||
require __DIR__ . '/../bootstrap.php'; | ||
|
||
|
||
class TestControl extends Control | ||
{ | ||
use SecuredLinksControlTrait; | ||
#[Secured] | ||
public function handlePay($amount = 0) | ||
{ | ||
} | ||
} | ||
|
||
|
||
class TestPresenter extends Presenter | ||
{ | ||
use SecuredLinksPresenterTrait; | ||
protected function startup() | ||
{ | ||
parent::startup(); | ||
$this['mycontrol'] = new TestControl; | ||
} | ||
public function renderDefault() | ||
{ | ||
$this->terminate(); | ||
} | ||
#[Secured] | ||
public function handlePay($amount = 0) | ||
{ | ||
} | ||
#[Secured] | ||
public function handlePay2($amount) | ||
{ | ||
} | ||
#[Secured] | ||
public function handleList(array $sections) | ||
{ | ||
} | ||
} | ||
|
||
|
||
$url = new UrlScript('http://localhost/index.php', '/index.php'); | ||
|
||
$httpRequest = new HttpRequest($url); | ||
$httpResponse = new Response(); | ||
|
||
$router = new SimpleRouter(); | ||
$request = new Request('Test', HttpRequest::GET, array()); | ||
|
||
$sessionSection = Mockery::mock('alias:Nette\Http\SessionSection'); | ||
$sessionSection->token = 'abcd'; | ||
|
||
$session = Mockery::mock('Nette\Http\Session'); | ||
$session->shouldReceive('getSection')->with('Nextras.Application.UI.SecuredLinksPresenterTrait')->andReturn($sessionSection); | ||
$session->shouldReceive('getId')->times(8)->andReturn('session_id_1'); | ||
|
||
$presenter = new TestPresenter(); | ||
$presenter->autoCanonicalize = FALSE; | ||
$presenter->injectPrimary(NULL, NULL, $router, $httpRequest, $httpResponse, $session, NULL); | ||
$presenter->run($request); | ||
|
||
|
||
Assert::same( '/index.php?action=default&do=pay&presenter=Test&_sec=7VNmMotk', $presenter->link('pay!') ); | ||
Assert::same( '/index.php?amount=200&action=default&do=pay&presenter=Test&_sec=7VNmMotk', $presenter->link('pay!', [200]) ); | ||
Assert::same( '/index.php?amount=100&action=default&do=pay2&presenter=Test&_sec=JtQFHCP3', $presenter->link('pay2!', [100]) ); | ||
Assert::same( '/index.php?amount=200&action=default&do=pay2&presenter=Test&_sec=S2PM9nnh', $presenter->link('pay2!', [200]) ); | ||
Assert::same( '/index.php?sections[0]=a§ions[1]=b&action=default&do=list&presenter=Test&_sec=btNfK0zF', urldecode($presenter->link('list!', [['a', 'b']])) ); | ||
Assert::same( '/index.php?sections[0]=a§ions[1]=c&action=default&do=list&presenter=Test&_sec=2oGtxq6E', urldecode($presenter->link('list!', [['a', 'c']])) ); | ||
|
||
Assert::same( '/index.php?action=default&do=mycontrol-pay&presenter=Test&mycontrol-_sec=_eyaqc4b', $presenter['mycontrol']->link('pay') ); | ||
Assert::same( '/index.php?mycontrol-amount=200&action=default&do=mycontrol-pay&presenter=Test&mycontrol-_sec=_eyaqc4b', $presenter['mycontrol']->link('pay', [200]) ); | ||
|
||
|
||
$session->shouldReceive('getId')->times(2)->andReturn('session_id_2'); | ||
|
||
Assert::same( '/index.php?sections[0]=a§ions[1]=b&action=default&do=list&presenter=Test&_sec=Y3v1C1cr', urldecode($presenter->link('list!', [['a', 'b']])) ); | ||
Assert::same( '/index.php?sections[0]=a§ions[1]=c&action=default&do=list&presenter=Test&_sec=kfY-zsLy', urldecode($presenter->link('list!', [['a', 'c']])) ); | ||
|
||
Mockery::close(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters