public void testBundleHeaderEncoding() throws Exception {
String value = "some file";
Dictionary headers = new Properties();
headers.put("Web-ContextPath", value);
Bundle bundle = new MockBundle(headers);
String path = strategy.getContextPath(bundle);
assertTrue(path.startsWith("/"));
assertEquals("/" + encode(value), path);
}