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
|
<?php
namespace OpenCloud\Tests\CloudMonitoring\Resource;
use OpenCloud\Tests\CloudMonitoring\CloudMonitoringTestCase;
class AlarmTest extends CloudMonitoringTestCase
{
const ENTITY_ID = 'en5hw56rAh';
const ALARM_ID = 'alAAAA';
public function setupObjects()
{
parent::setupObjects();
$this->resource = $this->entity->getAlarm();
}
public function testResourceClass()
{
$this->assertInstanceOf(
'OpenCloud\\CloudMonitoring\\Resource\\Alarm',
$this->resource
);
$this->assertInstanceOf(
'OpenCloud\\CloudMonitoring\\Resource\\Entity',
$this->resource->getParent()
);
}
public function testUrl()
{
$this->assertEquals(
'https://monitoring.api.rackspacecloud.com/v1.0/123456/entities/'.self::ENTITY_ID.'/alarms',
(string) $this->resource->getUrl()
);
}
/**
* @expectedException OpenCloud\Common\Exceptions\CreateError
*/
public function testCreateFailsWithNoParams()
{
$this->resource->create();
}
/**
* @expectedException OpenCloud\Common\Exceptions\UpdateError
*/
public function testUpdateFailsWithNoParams()
{
$this->resource->update();
}
/**
* @mockFile Entity_Test
*/
public function testAlarmTesting()
{
$params = array();
// Set criteria
$params['criteria'] = 'if (metric["code"] == "404") { return new AlarmStatus(CRITICAL, "not found"); } return new AlarmStatus(OK);';
// Data which needs to be tested
$params['check_data'] = json_decode(file_get_contents(__DIR__ . '/test_existing.json'));
$response = $this->resource->test($params);
$this->assertObjectHasAttribute('timestamp', $response[0]);
$this->assertObjectHasAttribute('status', $response[0]);
$this->assertEquals('OK', $response[0]->state);
}
/**
* @mockFile Alarm_List
*/
public function testAlarmCollection()
{
$this->assertInstanceOf(self::COLLECTION_CLASS, $this->resource->listAll());
}
/**
* @mockFile Alarm
*/
public function testGetAlarm()
{
$this->resource->refresh(self::ALARM_ID);
$this->assertEquals($this->resource->getId(), self::ALARM_ID);
$this->assertEquals($this->resource->getParent()->getId(), self::ENTITY_ID);
$this->expectOutputRegex('/return new AlarmStatus\(OK\)/');
echo $this->resource->getCriteria();
}
public function testCreate()
{
$this->addMockSubscriber(new \Guzzle\Http\Message\Response(201));
$this->resource->create(array(
'check_id' => 'foo',
'notification_plan_id' => 'bar'
));
}
/**
* @expectedException OpenCloud\CloudMonitoring\Exception\AlarmException
*/
public function testTestWithoutCriteriaParamFails()
{
$this->resource->test();
}
/**
* @expectedException OpenCloud\CloudMonitoring\Exception\AlarmException
*/
public function testTestWithoutRequiredParamsFails()
{
$this->resource->test(array('criteria' => 'foobar'));
}
}
|