Moved existing functional tests into resource server folder

This commit is contained in:
Alex Bilbie 2014-07-22 12:15:41 +01:00
parent 47a5c1ba08
commit 395ee3bf49
12 changed files with 23 additions and 13 deletions

View File

@ -23,7 +23,7 @@ before_script:
script:
- mkdir -p build/logs
- phpunit --coverage-text
- ./vendor/bin/codecept run api -d
- ./vendor/bin/codecept run resourceServer -d
- ./vendor/bin/phpcs src --standard=psr2
after_script:

View File

@ -4,7 +4,7 @@ namespace Codeception\Module;
// here you can define custom actions
// all public methods declared in helper class will be available in $I
class ApiHelper extends \Codeception\Module
class AuthServerHelper extends \Codeception\Module
{
}

View File

@ -0,0 +1,10 @@
<?php
namespace Codeception\Module;
// here you can define custom actions
// all public methods declared in helper class will be available in $I
class ResourceServerHelper extends \Codeception\Module
{
}

View File

@ -1,6 +1,6 @@
class_name: ApiTester
class_name: ResourceServerTester
modules:
enabled: [PhpBrowser, REST, ApiHelper]
enabled: [PhpBrowser, REST, ResourceServerHelper]
config:
PhpBrowser:
url: http://localhost:8000/

View File

@ -1,5 +1,5 @@
<?php
$I = new ApiTester($scenario);
$I = new ResourceServerTester($scenario);
$I->wantTo('get all users with all fields');
$I->sendGET('api.php/users?access_token=iamgod');
$I->seeResponseCodeIs(200);

View File

@ -1,5 +1,5 @@
<?php
$I = new ApiTester($scenario);
$I = new ResourceServerTester($scenario);
$I->wantTo('get all users with all basic and email fields');
$I->sendGET('api.php/users?access_token=iamphil');
$I->seeResponseCodeIs(200);

View File

@ -1,5 +1,5 @@
<?php
$I = new ApiTester($scenario);
$I = new ResourceServerTester($scenario);
$I->wantTo('get all users with basic and photo fields');
$I->sendGET('api.php/users?access_token=iamalex');
$I->seeResponseCodeIs(200);

View File

@ -1,5 +1,5 @@
<?php
$I = new ApiTester($scenario);
$I = new ResourceServerTester($scenario);
$I->wantTo('get all users with an invalid access token');
$I->sendGET('api.php/users?access_token=foobar');
$I->seeResponseCodeIs(401);

View File

@ -1,5 +1,5 @@
<?php
$I = new ApiTester($scenario);
$I = new ResourceServerTester($scenario);
$I->wantTo('get all users without an access token');
$I->sendGET('api.php/users');
$I->seeResponseCodeIs(400);

View File

@ -1,5 +1,5 @@
<?php
$I = new ApiTester($scenario);
$I = new ResourceServerTester($scenario);
$I->wantTo('get all users with header access token');
$I->haveHttpHeader('Authorization', 'Bearer iamgod');
$I->sendGET('api.php/users');

View File

@ -1,4 +1,4 @@
<?php //[STAMP] babc0b91331536668c9382c85f4211e9
<?php //[STAMP] f92301a37a718375eb6b8c5ac7f36d91
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
@ -7,7 +7,7 @@
use Codeception\Module\PhpBrowser;
use Codeception\Module\REST;
use Codeception\Module\ApiHelper;
use Codeception\Module\ResourceServerHelper;
/**
* Inherited Methods
@ -22,7 +22,7 @@ use Codeception\Module\ApiHelper;
* @method void comment($description)
* @method void haveFriend($name)
*/
class ApiTester extends \Codeception\Actor
class ResourceServerTester extends \Codeception\Actor
{
/**