openstackid/app/tests/TrustedSitesServiceTest.php
Sebastian Marcet 0876a3aab2 Integration Testing
added more unit tests
refactored code to allow unit tests

Change-Id: I747ca90a1f6e964f3d857554c1dddcff40ba0003
Implements: blueprint openid-oauth2-integration-testing
2014-02-19 19:27:29 -03:00

81 lines
2.0 KiB
PHP

<?php
use openid\services\OpenIdServiceCatalog;
use utils\services\IAuthService;
use Way\Tests\Factory;
/**
* Class TrustedSitesServiceTest
*/
class TrustedSitesServiceTest extends TestCase {
public function __construct(){
}
protected function prepareForTests()
{
parent::prepareForTests();
}
public function tearDown()
{
Mockery::close();
}
public function testBehaviorAdd(){
$repo_mock = Mockery::mock('repositories\EloquentOpenIdTrustedSiteRepository');
$repo_mock->shouldReceive('add')->andReturn(true)->once();
$this->app->instance('openid\repositories\IOpenIdTrustedSiteRepository', $repo_mock);
$mock_user = Mockery::mock('openid\model\IOpenIdUser');
$mock_user->shouldReceive('getId')->andReturn(1);
$service = $this->app[OpenIdServiceCatalog::TrustedSitesService];
$res = $service->addTrustedSite($mock_user,
$realm = 'https://www.test.com',
IAuthService::AuthorizationResponse_AllowForever,
$data = array());
$this->assertTrue(!is_null($res));
}
public function testAdd(){
$service = $this->app[OpenIdServiceCatalog::TrustedSitesService];
$user = Factory::create('auth\User');
$res = $service->addTrustedSite($user,
$realm = 'https://www.test.com',
IAuthService::AuthorizationResponse_AllowForever,
$data = array());
$this->assertTrue(!is_null($res));
}
public function testGetTrustedSitesByRealm(){
$realm = 'https://*.test.com';
$service = $this->app[OpenIdServiceCatalog::TrustedSitesService];
$user = Factory::create('auth\User');
$res = $service->addTrustedSite($user, $realm, IAuthService::AuthorizationResponse_AllowForever, $data = array('email','profile','address'));
$this->assertTrue(!is_null($res));
$sites = $service->getTrustedSites($user,'https://www.dev.test.com', $data = array('email','address'));
$this->assertTrue(is_array($sites));
$this->assertTrue(count($sites)>0);
}
}