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
|
<?php
use \Mockery as m;
class KeysTest extends PHPUnit_Framework_TestCase {
protected $formHeaders = array('Content-Type' => 'application/x-www-form-urlencoded');
function testDelete() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('delete')->once() ->with('/2010-04-01/Accounts/AC123/Keys/SK123.json') ->andReturn(array(204, array('Content-Type' => 'application/json'), '' )); $client = new Services_Twilio('AC123', '123', '2010-04-01', $http); $client->account->keys->delete('SK123'); }
function testGet() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('get')->once() ->with('/2010-04-01/Accounts/AC123/Keys/SK123.json') ->andReturn(array(200, array('Content-Type' => 'application/json'), json_encode(array('sid' => 'SK123', 'friendly_name' => 'foo')) )); $client = new Services_Twilio('AC123', '123', '2010-04-01', $http); $key = $client->account->keys->get('SK123'); $this->assertNotNull($key); $this->assertEquals('foo', $key->friendly_name); }
function testPost() { $http = m::mock(new Services_Twilio_TinyHttp); $http->shouldReceive('post')->once() ->with('/2010-04-01/Accounts/AC123/Keys.json', $this->formHeaders, 'FriendlyName=foo') ->andReturn(array(201, array('Content-Type' => 'application/json'), json_encode(array('sid' => 'SK123', 'secret' => 'SomeSecret')) )); $client = new Services_Twilio('AC123', '123', '2010-04-01', $http); $key = $client->account->keys->create(array('FriendlyName' => 'foo')); $this->assertEquals('SK123', $key->sid); $this->assertEquals('SomeSecret', $key->secret); }
function tearDown() { m::close(); } }
|