Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F984962
UsageTriggersTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
UsageTriggersTest.php
View Options
<?php
use
\Mockery
as
m
;
class
UsageTriggersTest
extends
PHPUnit_Framework_TestCase
{
function
testRetrieveTrigger
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/Usage/Triggers/UT123.json'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
array
(
'sid'
=>
'UT123'
,
'date_created'
=>
'Tue, 09 Oct 2012 19:27:24 +0000'
,
'recurring'
=>
null
,
'usage_category'
=>
'totalprice'
,
))
));
$client
=
new
Services_Twilio
(
'AC123'
,
'456bef'
,
'2010-04-01'
,
$http
);
$usageSid
=
'UT123'
;
$usageTrigger
=
$client
->
account
->
usage_triggers
->
get
(
$usageSid
);
$this
->
assertSame
(
'totalprice'
,
$usageTrigger
->
usage_category
);
}
protected
$formHeaders
=
array
(
'Content-Type'
=>
'application/x-www-form-urlencoded'
);
function
testUpdateTrigger
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$usageSid
=
'UT123'
;
$http
->
shouldReceive
(
'post'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/Usage/Triggers/UT123.json'
,
$this
->
formHeaders
,
'FriendlyName=new'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
array
(
'friendly_name'
=>
'new'
,
'sid'
=>
'UT123'
,
'uri'
=>
'/2010-04-01/Accounts/AC123/Usage/Triggers/UT123.json'
))
));
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/Usage/Triggers/UT123.json'
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
array
(
'sid'
=>
'UT123'
,
'friendly_name'
=>
'new'
,
))
));
$client
=
new
Services_Twilio
(
'AC123'
,
'456bef'
,
'2010-04-01'
,
$http
);
$usageTrigger
=
$client
->
account
->
usage_triggers
->
get
(
$usageSid
);
$usageTrigger
->
update
(
array
(
'FriendlyName'
=>
'new'
,
));
$usageTrigger2
=
$client
->
account
->
usage_triggers
->
get
(
$usageSid
);
$this
->
assertSame
(
'new'
,
$usageTrigger2
->
friendly_name
);
}
function
testFilterTriggerList
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$params
=
'Page=0&PageSize=50&UsageCategory=sms'
;
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/Usage/Triggers.json?'
.
$params
)
->
andReturn
(
array
(
200
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
array
(
'usage_triggers'
=>
array
(
array
(
'usage_category'
=>
'sms'
,
'current_value'
=>
'4'
,
'trigger_value'
=>
'100.30'
,
),
array
(
'usage_category'
=>
'sms'
,
'current_value'
=>
'4'
,
'trigger_value'
=>
'400.30'
,
)),
'next_page_uri'
=>
'/2010-04-01/Accounts/AC123/Usage/Triggers.json?UsageCategory=sms&Page=1&PageSize=50'
,
))
));
$params
=
'UsageCategory=sms&Page=1&PageSize=50'
;
$http
->
shouldReceive
(
'get'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/Usage/Triggers.json?'
.
$params
)
->
andReturn
(
array
(
400
,
array
(
'Content-Type'
=>
'application/json'
),
'{"status":400,"message":"foo", "code": "20006"}'
));
$client
=
new
Services_Twilio
(
'AC123'
,
'456bef'
,
'2010-04-01'
,
$http
);
foreach
(
$client
->
account
->
usage_triggers
->
getIterator
(
0
,
50
,
array
(
'UsageCategory'
=>
'sms'
,
))
as
$trigger
)
{
$this
->
assertSame
(
$trigger
->
current_value
,
"4"
);
}
}
function
testCreateTrigger
()
{
$http
=
m
::
mock
(
new
Services_Twilio_TinyHttp
);
$params
=
'UsageCategory=sms&TriggerValue=100&CallbackUrl=foo'
;
$http
->
shouldReceive
(
'post'
)->
once
()
->
with
(
'/2010-04-01/Accounts/AC123/Usage/Triggers.json'
,
$this
->
formHeaders
,
$params
)
->
andReturn
(
array
(
201
,
array
(
'Content-Type'
=>
'application/json'
),
json_encode
(
array
(
'usage_category'
=>
'sms'
,
'sid'
=>
'UT123'
,
'uri'
=>
'/2010-04-01/Accounts/AC123/Usage/Triggers/UT123.json'
))
));
$client
=
new
Services_Twilio
(
'AC123'
,
'456bef'
,
'2010-04-01'
,
$http
);
$trigger
=
$client
->
account
->
usage_triggers
->
create
(
'sms'
,
'100'
,
'foo'
);
$this
->
assertSame
(
'sms'
,
$trigger
->
usage_category
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 3:46 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
231846
Default Alt Text
UsageTriggersTest.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment