OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HttpServerTest
(Results
1 - 14
of
14
) sorted by null
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
InvalidRequestTest.java
40
public class InvalidRequestTest extends
HttpServerTest
{
44
invokeServer("GET " +
HttpServerTest
.URI + "\r\nX-Important-Header: foo");
54
invokeServer("GET " +
HttpServerTest
.URI + " HTTP/1.1\r\nX-Important-Header: foo");
64
invokeServer("POST " +
HttpServerTest
.URI + "\r\nContent-Length: 123");
73
invokeServer("POST " +
HttpServerTest
.URI + " HTTP/1.1\r\nContent-Length: 123");
HttpDeleteRequestTest.java
41
public class HttpDeleteRequestTest extends
HttpServerTest
{
47
ByteArrayOutputStream outputStream = invokeServer("DELETE " +
HttpServerTest
.URI + " HTTP/1.1");
65
ByteArrayOutputStream outputStream = invokeServer("DELETE " +
HttpServerTest
.URI + " HTTP/1.1");
83
ByteArrayOutputStream outputStream = invokeServer("DELETE " +
HttpServerTest
.URI + " HTTP/1.1");
101
ByteArrayOutputStream outputStream = invokeServer("DELETE " +
HttpServerTest
.URI + " HTTP/1.1");
120
ByteArrayOutputStream outputStream = invokeServer("DELETE " +
HttpServerTest
.URI + " HTTP/1.1");
HttpGetRequestTest.java
45
public class HttpGetRequestTest extends
HttpServerTest
{
49
invokeServer("GET " +
HttpServerTest
.URI + "?foo&bar= HTTP/1.1");
59
invokeServer("GET " +
HttpServerTest
.URI + "?foo=bar&foo=baz&zot&zim= HTTP/1.1");
73
invokeServer("GET " +
HttpServerTest
.URI + "?foo=bar&foo=baz&zot&zim= HTTP/1.1");
82
invokeServer("GET " +
HttpServerTest
.URI + "?foo=bar&baz=zot HTTP/1.1");
94
invokeServer("GET " +
HttpServerTest
.URI + "?foo&baz=zot HTTP/1.1");
105
invokeServer("GET " +
HttpServerTest
.URI + "?foo=bar&foo=baz HTTP/1.1");
114
invokeServer("GET " +
HttpServerTest
.URI + " HTTP/1.1");
123
ByteArrayOutputStream outputStream = invokeServer("GET " +
HttpServerTest
.URI + " HTTP/1.1");
139
invokeServer("GET " +
HttpServerTest
.URI + "?foo=bar&baz=zot HTTP/1.1")
[
all
...]
HttpHeadRequestTest.java
45
public class HttpHeadRequestTest extends
HttpServerTest
{
56
invokeServer("HEAD " +
HttpServerTest
.URI + "?foo&bar= HTTP/1.1");
66
invokeServer("HEAD " +
HttpServerTest
.URI + "?foo=bar&foo=baz&zot&zim= HTTP/1.1");
80
invokeServer("HEAD " +
HttpServerTest
.URI + "?foo=bar&foo=baz&zot&zim= HTTP/1.1");
89
invokeServer("HEAD " +
HttpServerTest
.URI + "?foo=bar&baz=zot HTTP/1.1");
101
invokeServer("HEAD " +
HttpServerTest
.URI + "?foo&baz=zot HTTP/1.1");
112
invokeServer("HEAD " +
HttpServerTest
.URI + "?foo=bar&foo=baz HTTP/1.1");
121
invokeServer("HEAD " +
HttpServerTest
.URI + " HTTP/1.1");
130
ByteArrayOutputStream outputStream = invokeServer("HEAD " +
HttpServerTest
.URI + " HTTP/1.1");
146
invokeServer("HEAD " +
HttpServerTest
.URI + "?foo=bar&baz=zot HTTP/1.1")
[
all
...]
HttpPutRequestTest.java
45
public class HttpPutRequestTest extends
HttpServerTest
{
49
ByteArrayOutputStream outputStream = invokeServer("PUT " +
HttpServerTest
.URI + " HTTP/1.1\r\n\r\nBodyData 1\nLine 2");
HttpKeepAliveTest.java
44
public class HttpKeepAliveTest extends
HttpServerTest
{
50
String request = "GET " +
HttpServerTest
.URI + " HTTP/1.1\r\n\r\n";
65
String request = "PUT " +
HttpServerTest
.URI + " HTTP/1.1\r\nContent-Length: " + data.length() + "\r\n\r\n" + data;
HttpParsingTest.java
40
public class HttpParsingTest extends
HttpServerTest
{
HttpChunkedResponseTest.java
42
public class HttpChunkedResponseTest extends
HttpServerTest
{
HttpSessionHeadersTest.java
45
public class HttpSessionHeadersTest extends
HttpServerTest
{
HttpPostRequestTest.java
46
public class HttpPostRequestTest extends
HttpServerTest
{
74
String header = "POST " +
HttpServerTest
.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data, boundary=" + divider + "\r\n";
118
String header = "POST " +
HttpServerTest
.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data; boundary=" + divider + "\n";
137
String header = "POST " +
HttpServerTest
.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data, boundary=" + divider + "\r\n";
156
String header = "POST " +
HttpServerTest
.URI + " HTTP/1.1\nContent-Type: " + "multipart/form-data; boundary=" + divider + "\r\n";
172
String header = "POST " +
HttpServerTest
.URI + " HTTP/1.1\n";
HttpSSLServerTest.java
51
public class HttpSSLServerTest extends
HttpServerTest
{
SSLServerSocketFactoryTest.java
52
public class SSLServerSocketFactoryTest extends
HttpServerTest
{
ServerSocketFactoryTest.java
44
import fi.iki.elonen.
HttpServerTest
.TestServer;
HttpServerTest.java
60
public class
HttpServerTest
{
Completed in 275 milliseconds