use of org.apache.http.client.methods.HttpGet in project nanohttpd by NanoHttpd.
the class TestHttpServer method doSomeBasicTest.
@Test
public void doSomeBasicTest() throws Exception {
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpGet httpget = new HttpGet("http://localhost:9090/testdir/test.html");
CloseableHttpResponse response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
String string = new String(readContents(entity), "UTF-8");
Assert.assertEquals("<html>\n<head>\n<title>dummy</title>\n</head>\n<body>\n\t<h1>it works</h1>\n</body>\n</html>", string);
response.close();
httpget = new HttpGet("http://localhost:9090/");
response = httpclient.execute(httpget);
entity = response.getEntity();
string = new String(readContents(entity), "UTF-8");
Assert.assertTrue(string.indexOf("testdir") > 0);
response.close();
httpget = new HttpGet("http://localhost:9090/testdir");
response = httpclient.execute(httpget);
entity = response.getEntity();
string = new String(readContents(entity), "UTF-8");
Assert.assertTrue(string.indexOf("test.html") > 0);
response.close();
httpget = new HttpGet("http://localhost:9090/testdir/testpdf.pdf");
response = httpclient.execute(httpget);
entity = response.getEntity();
byte[] actual = readContents(entity);
byte[] expected = readContents(new FileInputStream("src/test/resources/testdir/testpdf.pdf"));
Assert.assertArrayEquals(expected, actual);
response.close();
}
use of org.apache.http.client.methods.HttpGet in project nanohttpd by NanoHttpd.
the class TestHttpServer method doArgumentTest.
@Test
public void doArgumentTest() throws InterruptedException, UnsupportedEncodingException, IOException {
final String testPort = "9458";
Thread testServer = new Thread(new Runnable() {
@Override
public void run() {
String[] args = { "-h", "localhost", "-p", testPort, "-d", "src/test/resources" };
SimpleWebServer.main(args);
}
});
testServer.start();
Thread.sleep(200);
HttpGet httpget = new HttpGet("http://localhost:" + testPort + "/");
CloseableHttpClient httpclient = HttpClients.createDefault();
CloseableHttpResponse response = null;
try {
response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
String str = new String(readContents(entity), "UTF-8");
Assert.assertTrue("The response entity didn't contain the string 'testdir'", str.indexOf("testdir") >= 0);
} finally {
if (response != null)
response.close();
}
}
use of org.apache.http.client.methods.HttpGet in project nanohttpd by NanoHttpd.
the class TestHttpServer method testRangeHeaderAndIfNoneMatchHeader.
@Test
public void testRangeHeaderAndIfNoneMatchHeader() throws ClientProtocolException, IOException {
CloseableHttpResponse response = null;
try {
HttpGet httpGet = new HttpGet("http://localhost:9090/testdir/test.html");
httpGet.addHeader("range", "bytes=10-20");
httpGet.addHeader("if-none-match", "*");
CloseableHttpClient httpClient = HttpClients.createDefault();
response = httpClient.execute(httpGet);
Assert.assertEquals("The response status to a reqeuest with 'if-non-match=*' header and 'range' header should be NOT_MODIFIED(304)," + " if the file exists, because 'if-non-match' header should be given priority", 304, response.getStatusLine().getStatusCode());
} finally {
if (response != null) {
response.close();
}
}
}
use of org.apache.http.client.methods.HttpGet in project nanohttpd by NanoHttpd.
the class TestHttpServer method testRangeHeaderWithStartPositionOnly.
@Test
public void testRangeHeaderWithStartPositionOnly() throws ClientProtocolException, IOException {
CloseableHttpResponse response = null;
try {
HttpGet httpGet = new HttpGet("http://localhost:9090/testdir/test.html");
httpGet.addHeader("range", "bytes=10-");
CloseableHttpClient httpClient = HttpClients.createDefault();
response = httpClient.execute(httpGet);
HttpEntity entity = response.getEntity();
String responseString = new String(readContents(entity), "UTF-8");
Assert.assertThat("The data from the beginning of the file should have been skipped as specified in the 'range' header", responseString, not(containsString("<head>")));
Assert.assertThat("The response should contain the data from the end of the file since end position was not given in the 'range' header", responseString, containsString("</head>"));
Assert.assertEquals("The content length should be the length starting from the requested byte", "74", response.getHeaders("Content-Length")[0].getValue());
Assert.assertEquals("The 'Content-Range' header should contain the correct lengths and offsets based on the range served", "bytes 10-83/84", response.getHeaders("Content-Range")[0].getValue());
Assert.assertEquals("Response status for a successful range request should be PARTIAL_CONTENT(206)", 206, response.getStatusLine().getStatusCode());
} finally {
if (response != null) {
response.close();
}
}
}
use of org.apache.http.client.methods.HttpGet in project nanohttpd by NanoHttpd.
the class TestHttpServer method testIfNoneMatchHeader.
@Test
public void testIfNoneMatchHeader() throws ClientProtocolException, IOException {
CloseableHttpResponse response = null;
try {
HttpGet httpGet = new HttpGet("http://localhost:9090/testdir/test.html");
httpGet.addHeader("if-none-match", "*");
CloseableHttpClient httpClient = HttpClients.createDefault();
response = httpClient.execute(httpGet);
Assert.assertEquals("The response status to a reqeuest with 'if-non-match=*' header should be NOT_MODIFIED(304), if the file exists", 304, response.getStatusLine().getStatusCode());
} finally {
if (response != null) {
response.close();
}
}
}
Aggregations