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
|
<?php
use \Mockery as m;
class MonitorAlertsTest extends PHPUnit_Framework_TestCase {
function testGet() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('get')->once() ->with('/v1/Alerts/NO123') ->andReturn(array(200, array('Content-Type' => 'application/json'), json_encode(array('sid' => 'NO123', 'alert_text' => 'Test')) )); $monitorClient = new Monitor_Services_Twilio('AC123', '123', 'v1', $http); $alert = $monitorClient->alerts->get('NO123'); $this->assertNotNull($alert); $this->assertEquals('Test', $alert->alert_text); }
function testGetList() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('get')->once() ->with('/v1/Alerts?Page=0&PageSize=50') ->andReturn(array(200, array('Content-Type' => 'application/json'), json_encode(array( 'meta' => array('key' => 'alerts', 'next_page_url' => null), 'alerts' => array(array('sid' => 'NO123')) )) )); $monitorClient = new Monitor_Services_Twilio('AC123', '123', 'v1', $http); foreach ($monitorClient->alerts->getIterator(0, 50) as $alert) { $this->assertEquals('NO123', $alert->sid); } }
function tearDown() { m::close(); } }
|