FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JSON-Java-unit-test/HTTPTest.java at master · teocci/JSON-Java-unit-test · GitHub
teocci
/
JSON-Java-unit-test
Public
forked from
stleary/JSON-Java-unit-test
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
JSON-Java-unit-test
/
HTTPTest.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
145 lines (133 loc) · 5.91 KB
Breadcrumbs
JSON-Java-unit-test
/
HTTPTest.java
Copy path
File metadata and controls
145 lines (133 loc) · 5.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package
org
.
json
.
junit
;
import
org
.
json
.*;
import
org
.
junit
.
Test
;
/**
* Tests for JSON-Java HTTP.java
* See RFC7230
*/
public
class
HTTPTest
{
@
Test
(
expected
=
NullPointerException
.
class
)
public
void
nullHTTPException
() {
String
httpStr
=
null
;
HTTP
.
toJSONObject
(
httpStr
);
}
@
Test
(
expected
=
JSONException
.
class
)
public
void
notEnoughHTTPException
() {
String
httpStr
=
"{}"
;
JSONObject
jsonObject
=
new
JSONObject
(
httpStr
);
HTTP
.
toString
(
jsonObject
);
}
@
Test
public
void
emptyStringHTTPException
() {
String
httpStr
=
""
;
String
expectedHTTPStr
=
"{
\"
Request-URI
\"
:
\"
\"
,
\"
Method
\"
:
\"
\"
,
\"
HTTP-Version
\"
:
\"
\"
}"
;
JSONObject
jsonObject
=
HTTP
.
toJSONObject
(
httpStr
);
JSONObject
expectedJsonObject
=
new
JSONObject
(
expectedHTTPStr
);
Util
.
compareActualVsExpectedJsonObjects
(
jsonObject
,
expectedJsonObject
);
}
@
Test
public
void
simpleHTTPRequest
() {
String
httpStr
=
"GET /hello.txt HTTP/1.1"
;
String
expectedHTTPStr
=
"{
\"
Request-URI
\"
:
\"
/hello.txt
\"
,
\"
Method
\"
:
\"
GET
\"
,
\"
HTTP-Version
\"
:
\"
HTTP/1.1
\"
}"
;
JSONObject
jsonObject
=
HTTP
.
toJSONObject
(
httpStr
);
JSONObject
expectedJsonObject
=
new
JSONObject
(
expectedHTTPStr
);
Util
.
compareActualVsExpectedJsonObjects
(
jsonObject
,
expectedJsonObject
);
}
@
Test
public
void
simpleHTTPResponse
() {
String
httpStr
=
"HTTP/1.1 200 OK"
;
String
expectedHTTPStr
=
"{
\"
HTTP-Version
\"
:
\"
HTTP/1.1
\"
,
\"
Status-Code
\"
:
\"
200
\"
,
\"
Reason-Phrase
\"
:
\"
OK
\"
}"
;
JSONObject
jsonObject
=
HTTP
.
toJSONObject
(
httpStr
);
JSONObject
expectedJsonObject
=
new
JSONObject
(
expectedHTTPStr
);
Util
.
compareActualVsExpectedJsonObjects
(
jsonObject
,
expectedJsonObject
);
}
@
Test
public
void
extendedHTTPRequest
() {
String
httpStr
=
"POST /enlighten/calais.asmx HTTP/1.1
\n
"
+
"Host: api.opencalais.com
\n
"
+
"Content-Type: text/xml; charset=utf-8
\n
"
+
"Content-Length: 100
\n
"
+
"SOAPAction:
\"
http://clearforest.com/Enlighten
\"
"
;
String
expectedHTTPStr
=
"{"
+
"
\"
Request-URI
\"
:
\"
/enlighten/calais.asmx
\"
,"
+
"
\"
Host
\"
:
\"
api.opencalais.com
\"
,"
+
"
\"
Method
\"
:
\"
POST
\"
,"
+
"
\"
HTTP-Version
\"
:
\"
HTTP/1.1
\"
,"
+
"
\"
Content-Length
\"
:
\"
100
\"
,"
+
"
\"
Content-Type
\"
:
\"
text/xml; charset=utf-8
\"
}"
;
JSONObject
jsonObject
=
HTTP
.
toJSONObject
(
httpStr
);
JSONObject
expectedJsonObject
=
new
JSONObject
(
expectedHTTPStr
);
// not too easy for JSONObject to parse a string with embedded quotes
expectedJsonObject
.
put
(
"SOAPAction"
,
"
\"
http://clearforest.com/Enlighten
\"
"
);
Util
.
compareActualVsExpectedJsonObjects
(
jsonObject
,
expectedJsonObject
);
}
@
Test
public
void
extendedHTTPResponse
() {
String
httpStr
=
"HTTP/1.1 200 OK
\n
"
+
"Content-Type: text/xml; charset=utf-8
\n
"
+
"Content-Length: 100
\n
"
;
String
expectedHTTPStr
=
"{
\"
HTTP-Version
\"
:
\"
HTTP/1.1
\"
,"
+
"
\"
Status-Code
\"
:
\"
200
\"
,"
+
"
\"
Content-Length
\"
:
\"
100
\"
,"
+
"
\"
Reason-Phrase
\"
:
\"
OK
\"
,"
+
"
\"
Content-Type
\"
:
\"
text/xml; charset=utf-8
\"
}"
;
JSONObject
jsonObject
=
HTTP
.
toJSONObject
(
httpStr
);
JSONObject
expectedJsonObject
=
new
JSONObject
(
expectedHTTPStr
);
Util
.
compareActualVsExpectedJsonObjects
(
jsonObject
,
expectedJsonObject
);
}
@
Test
public
void
convertHTTPRequestToString
() {
String
httpStr
=
"POST /enlighten/calais.asmx HTTP/1.1
\n
"
+
"Host: api.opencalais.com
\n
"
+
"Content-Type: text/xml; charset=utf-8
\n
"
+
"Content-Length: 100"
;
String
expectedHTTPStr
=
"{"
+
"
\"
Request-URI
\"
:
\"
/enlighten/calais.asmx
\"
,"
+
"
\"
Host
\"
:
\"
api.opencalais.com
\"
,"
+
"
\"
Method
\"
:
\"
POST
\"
,"
+
"
\"
HTTP-Version
\"
:
\"
HTTP/1.1
\"
,"
+
"
\"
Content-Length
\"
:
\"
100
\"
,"
+
"
\"
Content-Type
\"
:
\"
text/xml; charset=utf-8
\"
}"
;
JSONObject
jsonObject
=
HTTP
.
toJSONObject
(
httpStr
);
JSONObject
expectedJsonObject
=
new
JSONObject
(
expectedHTTPStr
);
String
httpToStr
=
HTTP
.
toString
(
jsonObject
);
// JSONObject objects to crlfs and any trailing chars
// httpToStr = httpToStr.replaceAll("(\r\n\r\n)", "");
httpToStr
=
httpToStr
.
replaceAll
(
"("
+
HTTP
.
CRLF
+
HTTP
.
CRLF
+
")"
,
""
);
httpToStr
=
httpToStr
.
replaceAll
(
HTTP
.
CRLF
,
"
\n
"
);
JSONObject
finalJsonObject
=
HTTP
.
toJSONObject
(
httpToStr
);
Util
.
compareActualVsExpectedJsonObjects
(
jsonObject
,
expectedJsonObject
);
Util
.
compareActualVsExpectedJsonObjects
(
finalJsonObject
,
expectedJsonObject
);
}
@
Test
public
void
convertHTTPResponseToString
() {
String
httpStr
=
"HTTP/1.1 200 OK
\n
"
+
"Content-Type: text/xml; charset=utf-8
\n
"
+
"Content-Length: 100
\n
"
;
String
expectedHTTPStr
=
"{
\"
HTTP-Version
\"
:
\"
HTTP/1.1
\"
,"
+
"
\"
Status-Code
\"
:
\"
200
\"
,"
+
"
\"
Content-Length
\"
:
\"
100
\"
,"
+
"
\"
Reason-Phrase
\"
:
\"
OK
\"
,"
+
"
\"
Content-Type
\"
:
\"
text/xml; charset=utf-8
\"
}"
;
JSONObject
jsonObject
=
HTTP
.
toJSONObject
(
httpStr
);
JSONObject
expectedJsonObject
=
new
JSONObject
(
expectedHTTPStr
);
String
httpToStr
=
HTTP
.
toString
(
jsonObject
);
// JSONObject objects to crlfs and any trailing chars
// httpToStr = httpToStr.replaceAll("(\r\n\r\n)", "");
httpToStr
=
httpToStr
.
replaceAll
(
"("
+
HTTP
.
CRLF
+
HTTP
.
CRLF
+
")"
,
""
);
httpToStr
=
httpToStr
.
replaceAll
(
HTTP
.
CRLF
,
"
\n
"
);
JSONObject
finalJsonObject
=
HTTP
.
toJSONObject
(
httpToStr
);
Util
.
compareActualVsExpectedJsonObjects
(
jsonObject
,
expectedJsonObject
);
Util
.
compareActualVsExpectedJsonObjects
(
finalJsonObject
,
expectedJsonObject
);
}
}
Back
|
FazBrowse Home
|
New Git URL