*/
@Test
public void iframeCachability() throws Exception {
final SockJsServiceFactory factory = echoService();
EmbeddedChannel ch = channelForMockService(factory.config());
ch.writeInbound(httpRequest(factory.config().prefix() + "/iframe.html"));
final String etag1 = getEtag((FullHttpResponse) ch.readOutbound());
ch = channelForMockService(factory.config());
ch.writeInbound(httpRequest(factory.config().prefix() + "/iframe.html"));
final String etag2 = getEtag((FullHttpResponse) ch.readOutbound());