Blame view
sources/3rdparty/rackspace/php-opencloud/tests/OpenCloud/Tests/LoadBalancer/ServiceTest.php
2.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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
<?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\LoadBalancer;
class ServiceTest extends \OpenCloud\Tests\OpenCloudTestCase
{
private $service;
public function setupObjects()
{
$this->service = $this->getClient()->loadBalancerService('cloudLoadBalancers', 'DFW', 'publicURL');
}
public function test__construct()
{
$this->assertInstanceOf(
'OpenCloud\LoadBalancer\Service',
$this->getClient()->loadBalancerService('cloudLoadBalancers', 'DFW', 'publicURL')
);
}
public function testLoadBalancer()
{
$this->assertInstanceOf(
'OpenCloud\LoadBalancer\Resource\LoadBalancer',
$this->service->loadBalancer()
);
}
public function testLoadBalancerList()
{
$this->assertInstanceOf(
self::COLLECTION_CLASS,
$this->service->loadBalancerList()
);
}
public function testBillableLoadBalancer()
{
$this->assertInstanceOf(
'OpenCloud\LoadBalancer\Resource\BillableLoadBalancer',
$this->service->billableLoadBalancer()
);
}
public function testLoadBillableBalancerList()
{
$this->assertInstanceOf(
self::COLLECTION_CLASS,
$this->service->BillableLoadBalancerList()
);
}
public function testAllowedDomain()
{
$this->assertInstanceOf(
'OpenCloud\LoadBalancer\Resource\AllowedDomain',
$this->service->allowedDomain()
);
}
public function testAllowedDomainList()
{
$this->assertInstanceOf(
self::COLLECTION_CLASS,
$this->service->allowedDomainList()
);
}
public function testProtocol()
{
$this->assertInstanceOf(
'OpenCloud\LoadBalancer\Resource\Protocol',
$this->service->protocol()
);
}
public function testProtocolList()
{
$this->assertInstanceOf(
self::COLLECTION_CLASS,
$this->service->protocolList()
);
}
public function testAlgorithm()
{
$this->assertInstanceOf(
'OpenCloud\LoadBalancer\Resource\Algorithm',
$this->service->algorithm()
);
}
public function testAlgorithmList()
{
$this->assertInstanceOf(
self::COLLECTION_CLASS,
$this->service->algorithmList()
);
}
}
|