@Test
public void cacheMaxAge() throws IOException, InterruptedException {
final String content = "Testing the file system";
File f = createTemporaryFile(content);
startServer(new CacheHandler(), new ChunkedWriteHandler(), new FileServerHandler(f.getParent(), 100));
Thread.sleep(1000);
assertEquals(content, get("/" + f.getName()));
assertTrue(f.delete());
assertEquals(content, get("/" + f.getName()));