Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F425626
BuildQueryTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
BuildQueryTest.php
View Options
<?php
require_once
'Twilio.php'
;
class
BuildQueryTest
extends
PHPUnit_Framework_TestCase
{
public
function
testSimpleQueryString
()
{
$data
=
array
(
'foo'
=>
'bar'
,
'baz'
=>
'bin'
,
);
$this
->
assertEquals
(
Services_Twilio
::
buildQuery
(
$data
),
'foo=bar&baz=bin'
);
}
public
function
testSameKey
()
{
$data
=
array
(
'foo'
=>
array
(
'bar'
,
'baz'
,
'bin'
,
),
'boo'
=>
'bah'
,
);
$this
->
assertEquals
(
Services_Twilio
::
buildQuery
(
$data
),
'foo=bar&foo=baz&foo=bin&boo=bah'
);
}
public
function
testKeylessData
()
{
$data
=
array
(
'bar'
,
'baz'
,
'bin'
,
);
$this
->
assertEquals
(
Services_Twilio
::
buildQuery
(
$data
),
'0=bar&1=baz&2=bin'
);
}
public
function
testKeylessDataPrefix
()
{
$data
=
array
(
'bar'
,
'baz'
,
'bin'
,
);
$this
->
assertEquals
(
Services_Twilio
::
buildQuery
(
$data
,
'var'
),
'var0=bar&var1=baz&var2=bin'
);
}
public
function
testQualifiedUserAgent
()
{
$expected
=
Services_Twilio
::
USER_AGENT
.
" (php 5.4)"
;
$this
->
assertEquals
(
Services_Twilio
::
qualifiedUserAgent
(
"5.4"
),
$expected
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 3, 12:38 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
56270
Default Alt Text
BuildQueryTest.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment