コード例 #1
0
 public function testRebuildServer()
 {
     if (empty(self::$serverId)) {
         $this->markTestSkipped('The server ID is empty');
     }
     $options = array('name' => 'rebuildZF2test', 'imageRef' => '3afe97b2-26dc-49c5-a2cc-a2fc8d80c001', 'adminPass' => '1234567890');
     $server = $this->compute->rebuildServer(self::$serverId, $options);
     $this->assertTrue($server instanceof Compute\Server);
     $this->assertEquals($options['name'], $server->getName());
 }