OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:invokeServer
(Results
1 - 7
of
7
) sorted by null
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpGetRequestTest.java
14
ByteArrayOutputStream outputStream =
invokeServer
("GET " + URI + " HTTP/1.1");
32
ByteArrayOutputStream outputStream =
invokeServer
("GET " + URI + " HTTP/1.1");
49
invokeServer
("GET " + URI + " HTTP/1.1");
59
invokeServer
("GET " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\n");
69
invokeServer
("GET " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\nAccept: " + accept);
76
invokeServer
("GET " + URI + "?foo=bar HTTP/1.1");
82
invokeServer
("GET " + URI + "?foo HTTP/1.1");
88
invokeServer
("GET " + URI + "?foo=bar&baz=zot HTTP/1.1");
95
invokeServer
("GET " + URI + "?foo=&baz=zot HTTP/1.1");
102
invokeServer
("GET " + URI + "?foo=&baz=zot HTTP/1.1\nAccept: text/html")
[
all
...]
HttpDeleteRequestTest.java
17
ByteArrayOutputStream outputStream =
invokeServer
("DELETE " + URI + " HTTP/1.1");
35
ByteArrayOutputStream outputStream =
invokeServer
("DELETE " + URI + " HTTP/1.1");
53
ByteArrayOutputStream outputStream =
invokeServer
("DELETE " + URI + " HTTP/1.1");
71
ByteArrayOutputStream outputStream =
invokeServer
("DELETE " + URI + " HTTP/1.1");
90
ByteArrayOutputStream outputStream =
invokeServer
("DELETE " + URI + " HTTP/1.1");
HttpHeadRequestTest.java
20
ByteArrayOutputStream outputStream =
invokeServer
("HEAD " + URI + " HTTP/1.1");
36
invokeServer
("HEAD " + URI + " HTTP/1.1");
46
invokeServer
("HEAD " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\n");
56
invokeServer
("HEAD " + URI + " HTTP/1.1\nUser-Agent: " + userAgent + "\nAccept: " + accept);
63
invokeServer
("HEAD " + URI + "?foo=bar HTTP/1.1");
69
invokeServer
("HEAD " + URI + "?foo HTTP/1.1");
75
invokeServer
("HEAD " + URI + "?foo=bar&baz=zot HTTP/1.1");
82
invokeServer
("HEAD " + URI + "?foo=&baz=zot HTTP/1.1");
89
invokeServer
("HEAD " + URI + "?foo=&baz=zot HTTP/1.1\nAccept: text/html");
97
invokeServer
("HEAD " + URI + "?foo=bar&baz=zot HTTP/1.1")
[
all
...]
HttpChunkedResponseTest.java
37
ByteArrayOutputStream byteArrayOutputStream =
invokeServer
("GET / HTTP/1.0");
HttpPutRequestTest.java
16
ByteArrayOutputStream outputStream =
invokeServer
("PUT " + URI + " HTTP/1.1\r\n\r\nBodyData 1\nLine 2");
HttpPostRequestTest.java
32
invokeServer
(input);
52
invokeServer
(input);
75
invokeServer
(input);
99
invokeServer
(input);
112
invokeServer
(input);
126
invokeServer
(input);
HttpServerTest.java
56
protected ByteArrayOutputStream
invokeServer
(String request) {
Completed in 141 milliseconds