expect(request.getParameterNames()).andReturn(Collections.enumeration(options.keySet()));
expect(lockedDomainService.isSafeForOpenProxy(uri.getAuthority())).andReturn(true);
ProxyUriManager.ProxyUri pUri = new ProxyUri(-1, false, true, "default", "http://example.org/gadget.xml", REQUEST_URL);
pUri.setAuthType(AuthType.OAUTH);
pUri.setOAuthArguments(new OAuthArguments(AuthType.OAUTH, options));
expect(proxyHandler.fetch(pUri)).andReturn(new HttpResponse(RESPONSE_BODY));
replay();
servlet.doGet(request, recorder);
verify();