2016-02-14 23:20:10 +05:30
|
|
|
<?php
|
|
|
|
namespace tests\codeception\api\_pages;
|
|
|
|
|
|
|
|
use yii\codeception\BasePage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property \tests\codeception\api\FunctionalTester $actor
|
|
|
|
*/
|
|
|
|
class OauthRoute extends BasePage {
|
|
|
|
|
|
|
|
public function validate($queryParams) {
|
|
|
|
$this->route = ['oauth/validate'];
|
|
|
|
$this->actor->sendGET($this->getUrl($queryParams));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function complete($queryParams = [], $postParams = []) {
|
|
|
|
$this->route = ['oauth/complete'];
|
|
|
|
$this->actor->sendPOST($this->getUrl($queryParams), $postParams);
|
|
|
|
}
|
|
|
|
|
2016-02-23 03:19:46 +05:30
|
|
|
public function issueToken($postParams = []) {
|
|
|
|
$this->route = ['oauth/issue-token'];
|
|
|
|
$this->actor->sendPOST($this->getUrl(), $postParams);
|
|
|
|
}
|
|
|
|
|
2016-02-14 23:20:10 +05:30
|
|
|
}
|