Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92919798
PhutilJSONParserTestCase.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
Sun, Nov 24, 19:56
Size
3 KB
Mime Type
text/x-php
Expires
Tue, Nov 26, 19:56 (2 d)
Engine
blob
Format
Raw Data
Handle
22538011
Attached To
rPHU libphutil
PhutilJSONParserTestCase.php
View Options
<?php
final
class
PhutilJSONParserTestCase
extends
PhutilTestCase
{
public
function
testValidJSON
()
{
$parser
=
new
PhutilJSONParser
();
$tests
=
array
(
'{}'
=>
array
(),
'[]'
=>
array
(),
'{"foo": "bar"}'
=>
array
(
'foo'
=>
'bar'
),
'[1, "foo", true, null]'
=>
array
(
1
,
'foo'
,
true
,
null
),
'{"foo": {"bar": "baz"}}'
=>
array
(
'foo'
=>
array
(
'bar'
=>
'baz'
)),
'{"foo": "bar", "bar": ["baz"]}'
=>
array
(
'foo'
=>
'bar'
,
'bar'
=>
array
(
'baz'
)),
'{"foo": "bar", "bar": {"baz": "foo"}}'
=>
array
(
'foo'
=>
'bar'
,
'bar'
=>
array
(
'baz'
=>
'foo'
)),
'{"": ""}'
=>
array
(
''
=>
''
),
'{"test":"
\u
00c9v
\u
00e9nement"}'
=>
array
(
'test'
=>
"
\x
C3
\x
89v
\x
C3
\x
A9nement"
),
'["
\u
00c9v
\u
00e9nement"]'
=>
array
(
"
\x
C3
\x
89v
\x
C3
\x
A9nement"
),
'{"test":"http:
\/\/
foo
\\\\
zomg"}'
=>
array
(
'test'
=>
'http://foo
\\
zomg'
),
'["http:
\/\/
foo
\\\\
zomg"]'
=>
array
(
'http://foo
\\
zomg'
),
Filesystem
::
readFile
(
dirname
(
__FILE__
).
'/json/base64.json'
)
=>
array
(
'action'
=>
'candidate.create'
,
'actionId'
=>
'80653a26cc46357ff79ff83b47e27c3cb7a668bd'
,
'params'
=>
array
(
'attachments'
=>
array
(
Filesystem
::
readFile
(
dirname
(
__FILE__
).
'/json/base64.data'
),
),
),
),
);
foreach
(
$tests
as
$input
=>
$expect
)
{
$this
->
assertEqual
(
$expect
,
$parser
->
parse
(
$input
),
pht
(
'Parsing JSON: %s'
,
$input
));
}
}
public
function
testInvalidJSON
()
{
$parser
=
new
PhutilJSONParser
();
$tests
=
array
(
'{'
=>
array
(
'line'
=>
1
,
'char'
=>
1
,
'token'
=>
'EOF'
,
),
'['
=>
array
(
'line'
=>
1
,
'char'
=>
1
,
'token'
=>
'EOF'
,
),
'{"foo":'
=>
array
(
'line'
=>
1
,
'char'
=>
7
,
'token'
=>
'EOF'
,
),
'{"foo":"bar",}'
=>
array
(
'line'
=>
1
,
'char'
=>
13
,
'token'
=>
'}'
,
),
'{{}'
=>
array
(
'line'
=>
1
,
'char'
=>
1
,
'token'
=>
'{'
,
),
'{}}'
=>
array
(
'line'
=>
1
,
'char'
=>
2
,
'token'
=>
'}'
,
),
"{
\"
foo
\"
:
\"
bar
\"
,
\n\"
bar
\"
:
\"
baz
\"
,}"
=>
array
(
'line'
=>
2
,
'char'
=>
12
,
'token'
=>
'}'
,
),
"{'foo': 'bar'}"
=>
array
(
'line'
=>
1
,
'char'
=>
1
,
'token'
=>
'INVALID'
,
),
"{
\"
foo
\"
:
\"
bar
\n
baz
\"
}"
=>
array
(
'line'
=>
1
,
'char'
=>
7
,
'token'
=>
'INVALID'
,
),
'{"foo": "bar
\z
"}'
=>
array
(
'line'
=>
1
,
'char'
=>
7
,
'token'
=>
'INVALID'
,
),
);
foreach
(
$tests
as
$input
=>
$expected
)
{
$caught
=
null
;
try
{
$parser
->
parse
(
$input
);
}
catch
(
Exception
$ex
)
{
$caught
=
$ex
;
}
$this
->
assertTrue
(
$caught
instanceof
PhutilJSONParserException
);
$this
->
assertEqual
(
$expected
[
'line'
],
$caught
->
getSourceLine
());
$this
->
assertEqual
(
$expected
[
'char'
],
$caught
->
getSourceChar
());
$this
->
assertEqual
(
$expected
[
'token'
],
$caught
->
getSourceToken
());
}
}
public
function
testDuplicateKeys
()
{
$parser
=
new
PhutilJSONParser
();
$tests
=
array
(
'{"foo": "bar", "foo": "baz"}'
=>
array
(
'foo'
=>
'baz'
),
);
foreach
(
$tests
as
$input
=>
$expect
)
{
$parser
->
setAllowDuplicateKeys
(
true
);
$this
->
assertEqual
(
$expect
,
$parser
->
parse
(
$input
),
pht
(
'Parsing JSON: %s'
,
$input
));
$parser
->
setAllowDuplicateKeys
(
false
);
$caught
=
null
;
try
{
$parser
->
parse
(
$input
);
}
catch
(
Exception
$ex
)
{
$caught
=
$ex
;
}
$this
->
assertTrue
(
$caught
instanceof
PhutilJSONParserException
);
}
}
}
Event Timeline
Log In to Comment