FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java/src/test/java/com/jsoniter/TestString.java at master · ws-php/java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
ws-php
/
java
Public
forked from
json-iterator/java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
java
/
src
/
test
/
java
/
com
/
jsoniter
/
TestString.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (42 loc) · 2.08 KB
Breadcrumbs
java
/
src
/
test
/
java
/
com
/
jsoniter
/
TestString.java
Copy path
File metadata and controls
52 lines (42 loc) · 2.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package
com
.
jsoniter
;
import
junit
.
framework
.
TestCase
;
import
java
.
io
.
ByteArrayInputStream
;
import
java
.
io
.
IOException
;
public
class
TestString
extends
TestCase
{
public
void
test_string
()
throws
IOException
{
JsonIterator
iter
=
JsonIterator
.
parse
(
"'hello''world'"
.
replace
(
'\''
,
'"'
));
assertEquals
(
"hello"
,
iter
.
readString
());
assertEquals
(
"world"
,
iter
.
readString
());
iter
=
JsonIterator
.
parse
(
"'hello''world'"
.
replace
(
'\''
,
'"'
));
assertEquals
(
"hello"
,
iter
.
readString
());
assertEquals
(
"world"
,
iter
.
readString
());
}
public
void
test_base64
()
throws
IOException
{
JsonIterator
iter
=
JsonIterator
.
parse
(
"'YWJj'"
.
replace
(
'\''
,
'"'
));
assertEquals
(
"abc"
,
new
String
(
iter
.
readBase64
()));
}
public
void
test_string_across_buffer
()
throws
IOException
{
JsonIterator
iter
=
JsonIterator
.
parse
(
new
ByteArrayInputStream
(
"'hello''world'"
.
replace
(
'\''
,
'"'
).
getBytes
()),
2
);
assertEquals
(
"hello"
,
iter
.
readString
());
assertEquals
(
"world"
,
iter
.
readString
());
}
public
void
test_utf8
()
throws
IOException
{
byte
[]
bytes
= {
'"'
, (
byte
)
0xe4
, (
byte
)
0xb8
, (
byte
)
0xad
, (
byte
)
0xe6
, (
byte
)
0x96
, (
byte
)
0x87
,
'"'
};
JsonIterator
iter
=
JsonIterator
.
parse
(
new
ByteArrayInputStream
(
bytes
),
2
);
assertEquals
(
"中文"
,
iter
.
readString
());
}
public
void
test_normal_escape
()
throws
IOException
{
byte
[]
bytes
= {
'"'
, (
byte
)
'\\'
, (
byte
)
't'
,
'"'
};
JsonIterator
iter
=
JsonIterator
.
parse
(
new
ByteArrayInputStream
(
bytes
),
2
);
assertEquals
(
"
\t
"
,
iter
.
readString
());
}
public
void
test_unicode_escape
()
throws
IOException
{
byte
[]
bytes
= {
'"'
, (
byte
)
'\\'
, (
byte
)
'u'
, (
byte
)
'4'
, (
byte
)
'e'
, (
byte
)
'2'
, (
byte
)
'd'
,
'"'
};
JsonIterator
iter
=
JsonIterator
.
parse
(
new
ByteArrayInputStream
(
bytes
),
2
);
assertEquals
(
"中"
,
iter
.
readString
());
}
public
void
test_null_string
()
throws
IOException
{
JsonIterator
iter
=
JsonIterator
.
parse
(
"null"
.
replace
(
'\''
,
'"'
));
assertEquals
(
null
,
iter
.
readString
());
}
}
Back
|
FazBrowse Home
|
New Git URL