Blame view
sources/3rdparty/rackspace/php-opencloud/tests/OpenCloud/Tests/Compute/ServiceTest.php
1.59 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 62 63 64 65 |
<?php
/**
* Unit Tests
*
* @copyright 2012-2014 Rackspace Hosting, Inc.
* See COPYING for licensing information
*
* @version 1.0.0
* @author Glen Campbell <glen.campbell@rackspace.com>
*/
namespace OpenCloud\Tests\Compute;
class ServiceTest extends ComputeTestCase
{
public function test__construct()
{
$this->assertInstanceOf(
'OpenCloud\Compute\Service',
$this->getClient()->computeService('cloudServersOpenStack', 'DFW')
);
}
/**
* @expectedException OpenCloud\Common\Exceptions\UnsupportedVersionError
*/
public function test_Deprecated_Endpoint()
{
$this->getClient()->computeService('cloudServers', 'DFW');
}
public function testServer()
{
$this->assertInstanceOf('OpenCloud\Compute\Resource\Server', $this->service->Server());
}
public function testServerList()
{
$this->assertInstanceOf(self::COLLECTION_CLASS, $this->service->ServerList());
}
public function testImage()
{
$this->assertInstanceOf('OpenCloud\Compute\Resource\Image', $this->service->Image());
}
public function testNetwork()
{
$this->assertInstanceOf('OpenCloud\Compute\Resource\Network', $this->service->Network());
}
public function testNetworkList()
{
$this->assertInstanceOf(self::COLLECTION_CLASS, $this->service->NetworkList());
}
public function testNamespaces()
{
$this->assertNotContains('FOO', $this->service->namespaces());
$this->assertContains('os-flavor-rxtx', $this->service->namespaces());
}
}
|