Blame view
sources/3rdparty/rackspace/php-opencloud/tests/OpenCloud/Tests/Identity/ServiceTest.php
2.17 KB
|
6d9380f96
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
<?php
namespace OpenCloud\Tests\Identity;
class ServiceTest extends IdentityTestCase
{
public function test_Url()
{
$this->assertEquals('https://identity.api.rackspacecloud.com/v2.0/', (string) $this->service->getUrl());
}
public function test_Get_Users()
{
$this->assertNull($this->service->getUsers());
$this->addMockSubscriber($this->makeResponse('{"users":[{"id":1234}]}'));
$users = $this->service->getUsers();
$this->assertInstanceOf('OpenCloud\Common\Collection\ResourceIterator', $users);
$this->assertInstanceOf('OpenCloud\Identity\Resource\User', $users->current());
}
public function test_Get_User()
{
$this->assertInstanceOf('OpenCloud\Identity\Resource\User', $this->service->getUser('Foo Bar', 'name'));
$this->assertInstanceOf('OpenCloud\Identity\Resource\User', $this->service->getUser('foo@bar.com', 'email'));
$this->assertInstanceOf('OpenCloud\Identity\Resource\User', $this->service->getUser(1234, 'userId'));
$this->service->getUser(1234, 'foo');
}
public function test_Create_User()
{
$this->addMockSubscriber($this->makeResponse(null, 201));
$user = $this->service->createUser(array('name' => 'foo'));
$this->assertInstanceOf('OpenCloud\Identity\Resource\User', $user);
}
public function test_Get_Role()
{
$this->assertInstanceOf('OpenCloud\Identity\Resource\Role', $this->service->getRole('1234'));
}
public function test_Get_Roles()
{
$this->assertInstanceOf('OpenCloud\Common\Collection\PaginatedIterator', $this->service->getRoles());
}
public function test_Revoke_Token()
{
$response = $this->service->revokeToken(12345);
$this->assertInstanceOf('Guzzle\Http\Message\Response', $response);
}
public function test_Get_Tenants()
{
$this->addMockSubscriber($this->makeResponse('{"tenants":[{"id":1234}]}'));
$tenants = $this->service->getTenants();
$this->assertInstanceOf('OpenCloud\Common\Collection\ResourceIterator', $tenants);
$this->assertInstanceOf('OpenCloud\Identity\Resource\Tenant', $tenants->current());
}
}
|