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 EventsTest extends PHPUnit_Framework_TestCase {
function testGet() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('get')->once() ->with('/v1/Workspaces/WS123/Events/EV123') ->andReturn(array(200, array('Content-Type' => 'application/json'), json_encode(array('sid' => 'EV123', 'description' => 'Test Worker')) )); $taskrouterClient = new TaskRouter_Services_Twilio('AC123', '123', 'WS123', 'v1', $http); $worker = $taskrouterClient->workspace->events->get('EV123'); $this->assertNotNull($worker); $this->assertEquals('Test Worker', $worker->description); }
function testGetList() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('get')->once() ->with('/v1/Workspaces/WS123/Events?Page=0&PageSize=50') ->andReturn(array(200, array('Content-Type' => 'application/json'), json_encode(array( 'meta' => array('key' => 'events', 'next_page_url' => null), 'events' => array(array('sid' => 'EV123')) )) )); $taskrouterClient = new TaskRouter_Services_Twilio('AC123', '123', 'WS123', 'v1', $http); foreach ($taskrouterClient->workspace->events->getIterator(0, 50) as $event) { $this->assertEquals('EV123', $event->sid); } }
function tearDown() { m::close(); } }
|