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
|
<?php
use \Mockery as m;
class WorkersTest extends PHPUnit_Framework_TestCase {
function testCreate() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('post')->once() ->with('/v1/Workspaces/WS123/Workers', array('Content-Type' => 'application/x-www-form-urlencoded'), 'FriendlyName=Test+Worker') ->andReturn(array(200, array('Content-Type' => 'application/json'), json_encode(array('sid' => 'WK123')) )); $taskrouterClient = new TaskRouter_Services_Twilio('AC123', '123', 'WS123', 'v1', $http); $worker = $taskrouterClient->workspace->workers->create('Test Worker'); $this->assertNotNull($worker); }
function testGet() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('get')->once() ->with('/v1/Workspaces/WS123/Workers/WK123') ->andReturn(array(200, array('Content-Type' => 'application/json'), json_encode(array('sid' => 'WQ123', 'friendly_name' => 'Test Worker')) )); $taskrouterClient = new TaskRouter_Services_Twilio('AC123', '123', 'WS123', 'v1', $http); $worker = $taskrouterClient->workspace->workers->get('WK123'); $this->assertNotNull($worker); $this->assertEquals('Test Worker', $worker->friendly_name); }
function tearDown() { m::close(); } }
|