Ререализован метод для получения инфы о конфигурации API

This commit is contained in:
ErickSkrauch 2016-08-03 21:47:36 +03:00
parent 5e40ccbe49
commit 6efbbb7098
4 changed files with 14 additions and 14 deletions

View File

@ -4,7 +4,7 @@
# vendor будет заполнен уже внутри контейнера # vendor будет заполнен уже внутри контейнера
vendor vendor
# node_modules для этого контейнера не нужны # node_modules для этого контейнера не нужны
node_modules frontend/node_modules
# Все -local файлы # Все -local файлы
*/config/*-local.php */config/*-local.php

View File

@ -3,28 +3,27 @@ namespace api\controllers;
use Yii; use Yii;
use yii\helpers\ArrayHelper; use yii\helpers\ArrayHelper;
use yii\web\Response;
class OptionsController extends Controller { class OptionsController extends Controller {
public function behaviors() { public function behaviors() {
return ArrayHelper::merge(parent::behaviors(), [ return ArrayHelper::merge(parent::behaviors(), [
'authenticator' => [ 'authenticator' => [
'except' => ['recaptcha-public-key'], 'except' => ['index'],
], ],
]); ]);
} }
public function verbs() { public function verbs() {
return [ return [
'recaptcha-public-key' => ['GET'], 'index' => ['GET'],
]; ];
} }
public function actionRecaptchaPublicKey() { public function actionIndex() {
Yii::$app->response->format = Response::FORMAT_RAW; return [
'reCaptchaPublicKey' => Yii::$app->reCaptcha->public,
return Yii::$app->reCaptcha->public; ];
} }
} }

View File

@ -8,8 +8,8 @@ use yii\codeception\BasePage;
*/ */
class OptionsRoute extends BasePage { class OptionsRoute extends BasePage {
public function recaptchaPublicKey() { public function get() {
$this->route = ['options/recaptcha-public-key']; $this->route = ['options/index'];
$this->actor->sendGET($this->getUrl()); $this->actor->sendGET($this->getUrl());
} }

View File

@ -18,11 +18,12 @@ class OptionsCest {
public function testRecaptchaPublicKey(FunctionalTester $I) { public function testRecaptchaPublicKey(FunctionalTester $I) {
$I->wantTo('Get recaptcha public key'); $I->wantTo('Get recaptcha public key');
$this->route->recaptchaPublicKey(); $this->route->get();
$I->canSeeResponseCodeIs(200); $I->canSeeResponseCodeIs(200);
// TODO: эта проверка не проходит, т.к внутри почему-то после запроса не устанавливаются http заголовки $I->canSeeResponseIsJson();
//$I->seeHttpHeader('Content-Type', 'text/html; charset=UTF-8'); $I->canSeeResponseContainsJson([
$I->canSeeResponseEquals('public-key'); 'reCaptchaPublicKey' => 'public-key',
]);
} }
} }