request= createRequest("/foo/bar");
response= new MockHttpServletResponse();
chain = new MockFilterChain();
headerValue=clientDigestString(tmp, GeoServerUser.ROOT_USERNAME, getMasterPassword(), request.getMethod());
request.addHeader("Authorization", headerValue);
getProxy().doFilter(request, response, chain);
assertEquals(HttpServletResponse.SC_OK, response.getErrorCode());
auth = getAuth(testFilterName2, GeoServerUser.ROOT_USERNAME,300,300);
assertNull(auth);
assertNull(SecurityContextHolder.getContext().getAuthentication());