upgrade jetty to 6.1.22

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@926575 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2010-03-23 13:52:08 +00:00
parent e5e0634af6
commit 1467ee265b
14 changed files with 26 additions and 23 deletions

View File

@ -0,0 +1,2 @@
AnyObjectId[1acfa7af5ccfc71c4ce3eda9d541e976db25c94b] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[ad3d529a4149cb23135000c866ddebefd9c92638] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[2a780583326e0ee4cc8e5b9fa73d2e8243b4f559] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[101543bc9fb1320171d57b2f5a45d4dbcf77b565] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[3beb3b802ffd7502ac4b4d47e0b2a75d08e30cc3] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[2f4af846f236082616c5d47d85a83ce316fba3b6] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[6f5be1726194f061688aca6b1846f3b913f03fd2] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[8bb6fcfeabff8fa1059b751b12c539e4f7b8236f] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[eee522056a796a99e9ec07900facf783f45eedcd] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[bbba01f3dd2939f2101fff6617e782bf8efabde7] was removed in git history.
Apache SVN contains full history.

View File

@ -0,0 +1,2 @@
AnyObjectId[b0537c4dbdfbaeaf91078d79a32d01110f8f1de4] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +0,0 @@
AnyObjectId[8e9777d563b868521b5f2516013d3b59372b45f2] was removed in git history.
Apache SVN contains full history.

View File

@ -1,2 +1,2 @@
AnyObjectId[8a986c8001df6e6cde07989fbaf83264c97caa7e] was removed in git history.
AnyObjectId[2a4a9a163d79f9214d9b1d9c0dbb611f741d8f16] was removed in git history.
Apache SVN contains full history.

View File

@ -46,7 +46,7 @@ public class CacheHeaderTest extends CacheHeaderTestBase {
m.setQueryString(new NameValuePair[] { new NameValuePair("stream.file",f.getCanonicalPath())});
getClient().executeMethod(m);
assertEquals(200, m.getStatusCode());
checkVetoHeaders(m);
checkVetoHeaders(m, true);
}
public void testCacheVetoException() throws Exception {
@ -56,24 +56,27 @@ public class CacheHeaderTest extends CacheHeaderTestBase {
new NameValuePair("qt", "standard") });
getClient().executeMethod(m);
assertFalse(m.getStatusCode() == 200);
checkVetoHeaders(m);
checkVetoHeaders(m, false);
}
protected void checkVetoHeaders(HttpMethodBase m) throws Exception {
protected void checkVetoHeaders(HttpMethodBase m, boolean checkExpires) throws Exception {
Header head = m.getResponseHeader("Cache-Control");
assertNotNull("We got no Cache-Control header", head);
assertEquals("no-cache, no-store", head.getValue());
assertTrue("We got no no-cache in the Cache-Control header", head.getValue().contains("no-cache"));
assertTrue("We got no no-store in the Cache-Control header", head.getValue().contains("no-store"));
head = m.getResponseHeader("Pragma");
assertNotNull("We got no Pragma header", head);
assertEquals("no-cache", head.getValue());
head = m.getResponseHeader("Expires");
assertNotNull("We got no Expires header", head);
Date d = DateUtil.parseDate(head.getValue());
assertTrue("We got no Expires header far in the past", System
.currentTimeMillis()
- d.getTime() > 100000);
if (checkExpires) {
head = m.getResponseHeader("Expires");
assertNotNull("We got no Expires header:" + m.getResponseHeaders(), head);
Date d = DateUtil.parseDate(head.getValue());
assertTrue("We got no Expires header far in the past", System
.currentTimeMillis()
- d.getTime() > 100000);
}
}
protected void doLastModified(String method) throws Exception {