()
| 962 | } |
| 963 | |
| 964 | @Test |
| 965 | public void notFoundDeprecated() { |
| 966 | HttpQuery query = NettyMocks.getQuery(tsdb, "/"); |
| 967 | query.notFound(); |
| 968 | assertEquals(HttpResponseStatus.NOT_FOUND, query.response().getStatus()); |
| 969 | assertEquals( |
| 970 | "<!DOCTYPE html>", |
| 971 | query.response().getContent().toString(Charset.forName("UTF-8")) |
| 972 | .substring(0, 15)); |
| 973 | } |
| 974 | |
| 975 | @Test |
| 976 | public void notFoundDeprecatedJSON() { |