Blame view
sources/3rdparty/rackspace/php-opencloud/tests/OpenCloud/Smoke/Unit/Compute.php
7.33 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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
<?php
/**
* PHP OpenCloud library.
*
* @copyright 2014 Rackspace Hosting, Inc. See LICENSE for information.
* @license https://www.apache.org/licenses/LICENSE-2.0
* @author Jamie Hannaford <jamie.hannaford@rackspace.com>
*/
namespace OpenCloud\Smoke\Unit;
use OpenCloud\Compute\Constants\Network;
use OpenCloud\Smoke\Utils;
use Guzzle\Http\Exception\ClientErrorResponseException;
/**
* Description of Compute
*
* @link
*/
class Compute extends AbstractUnit implements UnitInterface
{
const NETWORK_NAME = 'FooNetwork';
const VOLUME_NAME = 'FooVolume';
const VOLUME_SIZE = 100;
const SERVER_NAME = 'FooServer';
const SNAPSHOT_NAME = 'FooSnapshot';
const FLAVOR = 'performance1-2';
const IMAGE = "046832f9-4549-4b38-a903-11acecac8cb9";
public function setupService()
{
return $this->getConnection()->computeService('cloudServersOpenStack', Utils::getRegion());
}
public function main()
{
// Flavors
$this->step('List Flavors');
$flavorList = $this->getService()->flavorList();
$flavorList->sort('id');
foreach ($flavorList as $flavor) {
$this->stepInfo('%s: %sMB, ID: [%s]', $flavor->name, $flavor->ram, $flavor->id);
}
// Images
$this->step('List Images');
$imageList = $this->getService()->imageList();
//$imageList->sort('name');
foreach ($imageList as $image) {
$this->stepInfo('%s; ID: [%s]; OS distro: [%s]', $image->name, $image->id, $image->metadata->os_distro);
}
// Create network
$this->step('Create Network');
$network = $this->getService()->network();
try {
$network->create(array(
'label' => $this->prepend(self::NETWORK_NAME),
'cidr' => '192.168.0.0/24'
));
} catch (ClientErrorResponseException $e) {
$this->stepInfo('Failed to create network :(');
}
// List networks
$this->step('List Networks');
$networks = $this->getService()->networkList();
//$networks->sort('label');
foreach ($networks as $network) {
$this->stepInfo('%s: %s (%s)', $network->id, $network->label, $network->cidr);
}
// Volumes
$this->step('Connect to the VolumeService');
$volumeService = $this->getConnection()->volumeService('cloudBlockStorage', Utils::getRegion());
// Volume types
$this->step('Volume Types');
$volumeTypes = $volumeService->volumeTypeList();
$volumeTypes->populateAll();
foreach ($volumeTypes as $volumeType) {
$this->stepInfo('%s - %s', $volumeType->id, $volumeType->name);
// save the ID for later
if (!isset($savedId)) {
$savedId = $volumeType->id;
}
}
// Create volume
$this->step('Create a new Volume');
$volume = $volumeService->volume();
$volume->create(array(
'display_name' => $this->prepend(self::VOLUME_NAME),
'display_description' => 'A sample volume for testing',
'size' => self::VOLUME_SIZE,
'volume_type' => $volumeService->volumeType($savedId)
));
// List volumes
$this->step('Listing volumes');
$volumeList = $volumeService->volumeList();
foreach ($volumeList as $volume1) {
$this->stepInfo(
'Volume: %s %s [%s] size=%d',
$volume1->id,
$volume1->display_name,
$volume1->display_description,
$volume1->size
);
}
// Create server
$this->step('Create Server');
$server = $this->getService()->server();
$server->addFile('/var/test1', 'TEST 1');
$server->addFile('/var/test2', 'TEST 2');
$server->create(array(
'name' => $this->prepend(self::SERVER_NAME . time()),
'image' => $this->getService()->image(self::IMAGE),
'flavor' => $this->getService()->flavor(self::FLAVOR),
'networks' => array(
$this->getService()->network(Network::RAX_PUBLIC),
$this->getService()->network(Network::RAX_PRIVATE)
),
"OS-DCF:diskConfig" => "AUTO"
));
$adminPassword = $server->adminPass;
$this->stepInfo('ADMIN PASSWORD = %s', $adminPassword);
$this->step('Wait for Server create');
$server->waitFor('ACTIVE', 600, $this->getWaiterCallback());
if ($server->status() == 'ERROR') {
$this->stepInfo("Server create failed with ERROR
");
return false;
}
// Rebuild
$this->step('Rebuild the server');
$server->rebuild(array(
'adminPass' => $adminPassword,
'image' => $centos
));
sleep(3);
$this->step('Wait for Server rebuild');
$server->waitFor('ACTIVE', 600, $this->getWaiterCallback());
if ($server->status() == 'ERROR') {
$this->stepInfo("Server rebuild failed with ERROR
");
return false;
}
sleep(3);
// Attach volume
$this->step('Attach the volume');
$server->attachVolume($volume);
$volume->waitFor('in-use', 300, $this->getWaiterCallback());
// Update & reboot server
$this->step('Update the server name');
$server->update(array(
'name' => $this->prepend(self::SERVER_NAME . time())
));
$server->waitFor('ACTIVE', 300, $this->getWaiterCallback());
$this->step('Reboot Server');
$server->reboot();
$server->waitFor('ACTIVE', 300, $this->getWaiterCallback());
// List all servers
$this->step('List Servers');
$list = $this->getService()->serverList();
//$list->sort('name');
foreach ($list as $server1) {
$this->stepInfo($server1->name);
}
}
public function teardown()
{
$this->step('Teardown');
$servers = $this->getService()->serverList();
// Delete servers
foreach ($servers as $server) {
$attachments = $server->volumeAttachmentList();
foreach ($attachments as $volumeAttachment) {
if ($this->shouldDelete($volumeAttachment->name())) {
$this->stepInfo('Deleting attachment: %s', $volumeAttachment->name());
$volumeAttachment->delete();
}
}
if ($this->shouldDelete($server->name)) {
$this->stepInfo('Deleting %s', $server->id);
$server->delete();
}
}
// Delete networks
$networks = $this->getService()->networkList();
foreach ($networks as $network) {
if (!in_array($network->id, array(Network::RAX_PRIVATE, Network::RAX_PUBLIC))) {
$this->stepInfo('Deleting: %s %s', $network->id, $network->label);
$network->delete();
}
}
// Delete volumes
$volumes = $this->getService()->volumeList();
foreach ($volumes as $volume) {
if ($this->shouldDelete($volume->name)) {
$volume->delete();
}
}
}
}
|