Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94963806
IncomingPhoneNumbersTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Dec 11, 18:27
Size
4 KB
Mime Type
text/x-php
Expires
Fri, Dec 13, 18:27 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22903924
Attached To
rPH Phabricator
IncomingPhoneNumbersTest.php
View Options
<?php
use
\Mockery
as
m
;
class
IncomingPhoneNumbersTest
extends
PHPUnit_Framework_TestCase
{
protected
$apiResponse
=
array
(
'incoming_phone_numbers'
=>
array
(
array
(
'sid'
=>
'PN123'
,
'sms_fallback_method'
=>
'POST'
,
'voice_method'
=>
'POST'
,
'friendly_name'
=>
'(510) 564-7903'
,
)
),
);
function
testGetNumberWithResult
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers.json?Page=0&PageSize=1&PhoneNumber=%2B14105551234'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
$this
->
apiResponse
)
)
);
$client
=
new
Services_Twilio
(
'AC123'
,
'123'
,
'2010-04-01'
,
$http
);
$number
=
$client
->
account
->
incoming_phone_numbers
->
getNumber
(
'+14105551234'
);
$this
->
assertEquals
(
'PN123'
,
$number
->
sid
);
}
function
testGetNumberNoResults
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers.json?Page=0&PageSize=1&PhoneNumber=%2B14105551234'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
array
(
'incoming_phone_numbers'
=>
array
(),
'page'
=>
0
,
'page_size'
=>
1
,
))
)
);
$client
=
new
Services_Twilio
(
'AC123'
,
'123'
,
'2010-04-01'
,
$http
);
$number
=
$client
->
account
->
incoming_phone_numbers
->
getNumber
(
'+14105551234'
);
$this
->
assertNull
(
$number
);
}
function
testGetMobile
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers/Mobile.json?Page=0&PageSize=50'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
$this
->
apiResponse
)
));
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers/Mobile.json?Page=1&PageSize=50'
)
->
andReturn
(
array
(
400
,
array
(
'Content-Type'
=>
'application/json'
),
'{"status":400,"message":"foo", "code": "20006"}'
));
$client
=
new
Services_Twilio
(
'AC123'
,
'123'
,
'2010-04-01'
,
$http
);
foreach
(
$client
->
account
->
incoming_phone_numbers
->
mobile
as
$num
)
{
$this
->
assertEquals
(
'(510) 564-7903'
,
$num
->
friendly_name
);
}
}
function
testGetLocal
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers/Local.json?Page=0&PageSize=50'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
$this
->
apiResponse
)
));
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers/Local.json?Page=1&PageSize=50'
)
->
andReturn
(
array
(
400
,
array
(
'Content-Type'
=>
'application/json'
),
'{"status":400,"message":"foo", "code": "20006"}'
));
$client
=
new
Services_Twilio
(
'AC123'
,
'123'
,
'2010-04-01'
,
$http
);
foreach
(
$client
->
account
->
incoming_phone_numbers
->
local
as
$num
)
{
$this
->
assertEquals
(
'(510) 564-7903'
,
$num
->
friendly_name
);
}
}
function
testGetTollFree
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers/TollFree.json?Page=0&PageSize=50'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
$this
->
apiResponse
)
));
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/IncomingPhoneNumbers/TollFree.json?Page=1&PageSize=50'
)
->
andReturn
(
array
(
400
,
array
(
'Content-Type'
=>
'application/json'
),
'{"status":400,"message":"foo", "code": "20006"}'
));
$client
=
new
Services_Twilio
(
'AC123'
,
'123'
,
'2010-04-01'
,
$http
);
foreach
(
$client
->
account
->
incoming_phone_numbers
->
toll_free
as
$num
)
{
$this
->
assertEquals
(
'(510) 564-7903'
,
$num
->
friendly_name
);
}
}
}
Event Timeline
Log In to Comment