| Index: net/url_request/test_url_request_interceptor.cc
|
| diff --git a/net/url_request/test_url_request_interceptor.cc b/net/url_request/test_url_request_interceptor.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7b1f777965235b6fab55dc15b7f14bac3c77645a
|
| --- /dev/null
|
| +++ b/net/url_request/test_url_request_interceptor.cc
|
| @@ -0,0 +1,196 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "net/url_request/test_url_request_interceptor.h"
|
| +
|
| +#include "base/file_util.h"
|
| +#include "base/threading/sequenced_worker_pool.h"
|
| +#include "base/threading/thread_restrictions.h"
|
| +#include "net/url_request/url_request.h"
|
| +#include "net/url_request/url_request_file_job.h"
|
| +#include "net/url_request/url_request_filter.h"
|
| +#include "net/url_request/url_request_interceptor.h"
|
| +#include "testing/gtest/include/gtest/gtest.h"
|
| +
|
| +namespace net {
|
| +
|
| +namespace {
|
| +
|
| +class TestURLRequestJob : public net::URLRequestFileJob {
|
| + public:
|
| + TestURLRequestJob(net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate,
|
| + const base::FilePath& file_path,
|
| + const scoped_refptr<base::TaskRunner>& worker_task_runner)
|
| + : net::URLRequestFileJob(request,
|
| + network_delegate,
|
| + file_path,
|
| + worker_task_runner) {}
|
| +
|
| + virtual int GetResponseCode() const OVERRIDE { return 200; }
|
| +
|
| + private:
|
| + virtual ~TestURLRequestJob() {}
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(TestURLRequestJob);
|
| +};
|
| +
|
| +} // namespace
|
| +
|
| +class TestURLRequestInterceptor::Delegate : public net::URLRequestInterceptor {
|
| + public:
|
| + Delegate(const std::string& scheme,
|
| + const std::string& hostname,
|
| + const scoped_refptr<base::TaskRunner>& io_task_runner,
|
| + const scoped_refptr<base::TaskRunner>& worker_task_runner)
|
| + : scheme_(scheme),
|
| + hostname_(hostname),
|
| + io_task_runner_(io_task_runner),
|
| + worker_task_runner_(worker_task_runner),
|
| + hit_count_(0) {}
|
| + virtual ~Delegate() {}
|
| +
|
| + void Register() {
|
| + net::URLRequestFilter::GetInstance()->AddHostnameInterceptor(
|
| + scheme_, hostname_, scoped_ptr<net::URLRequestInterceptor>(this));
|
| + }
|
| +
|
| + static void Unregister(const std::string& scheme,
|
| + const std::string& hostname) {
|
| + net::URLRequestFilter::GetInstance()->RemoveHostnameHandler(scheme,
|
| + hostname);
|
| + }
|
| +
|
| + // When requests for |url| arrive, respond with the contents of |path|. The
|
| + // hostname and scheme of |url| must match the corresponding parameters
|
| + // passed as constructor arguments.
|
| + void SetResponse(const GURL& url,
|
| + const base::FilePath& path,
|
| + bool ignore_query) {
|
| + DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
|
| + // It's ok to do a blocking disk access on this thread; this class
|
| + // is just used for tests.
|
| + base::ThreadRestrictions::ScopedAllowIO allow_io;
|
| + EXPECT_TRUE(base::PathExists(path));
|
| + if (ignore_query) {
|
| + ignore_query_responses_[url] = path;
|
| + } else {
|
| + responses_[url] = path;
|
| + }
|
| + }
|
| +
|
| + // Returns how many requests have been issued that have a stored reply.
|
| + int GetHitCount() const {
|
| + base::AutoLock auto_lock(hit_count_lock_);
|
| + return hit_count_;
|
| + }
|
| +
|
| + private:
|
| + typedef std::map<GURL, base::FilePath> ResponseMap;
|
| +
|
| + // When computing matches, this ignores the query parameters of the url.
|
| + virtual net::URLRequestJob* MaybeInterceptRequest(
|
| + net::URLRequest* request,
|
| + net::NetworkDelegate* network_delegate) const OVERRIDE {
|
| + DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
|
| + if (request->url().scheme() != scheme_ ||
|
| + request->url().host() != hostname_) {
|
| + return NULL;
|
| + }
|
| +
|
| + ResponseMap::const_iterator it = responses_.find(request->url());
|
| + if (it == responses_.end()) {
|
| + // Search for this request's url, ignoring any query parameters.
|
| + GURL url = request->url();
|
| + if (url.has_query()) {
|
| + GURL::Replacements replacements;
|
| + replacements.ClearQuery();
|
| + url = url.ReplaceComponents(replacements);
|
| + }
|
| + it = ignore_query_responses_.find(url);
|
| + if (it == ignore_query_responses_.end())
|
| + return NULL;
|
| + }
|
| + {
|
| + base::AutoLock auto_lock(hit_count_lock_);
|
| + ++hit_count_;
|
| + }
|
| +
|
| + return new TestURLRequestJob(
|
| + request, network_delegate, it->second, worker_task_runner_);
|
| + }
|
| +
|
| + const std::string scheme_;
|
| + const std::string hostname_;
|
| +
|
| + const scoped_refptr<base::TaskRunner> io_task_runner_;
|
| + const scoped_refptr<base::TaskRunner> worker_task_runner_;
|
| +
|
| + ResponseMap responses_;
|
| + ResponseMap ignore_query_responses_;
|
| +
|
| + mutable base::Lock hit_count_lock_;
|
| + mutable int hit_count_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(Delegate);
|
| +};
|
| +
|
| +TestURLRequestInterceptor::TestURLRequestInterceptor(
|
| + const std::string& scheme,
|
| + const std::string& hostname,
|
| + const scoped_refptr<base::TaskRunner>& io_task_runner,
|
| + const scoped_refptr<base::TaskRunner>& worker_task_runner)
|
| + : scheme_(scheme),
|
| + hostname_(hostname),
|
| + io_task_runner_(io_task_runner),
|
| + delegate_(
|
| + new Delegate(scheme, hostname, io_task_runner_, worker_task_runner)) {
|
| + io_task_runner_->PostTask(
|
| + FROM_HERE, base::Bind(&Delegate::Register, base::Unretained(delegate_)));
|
| +}
|
| +
|
| +TestURLRequestInterceptor::~TestURLRequestInterceptor() {
|
| + io_task_runner_->PostTask(
|
| + FROM_HERE, base::Bind(&Delegate::Unregister, scheme_, hostname_));
|
| +}
|
| +
|
| +void TestURLRequestInterceptor::SetResponse(const GURL& url,
|
| + const base::FilePath& path) {
|
| + CHECK_EQ(scheme_, url.scheme());
|
| + CHECK_EQ(hostname_, url.host());
|
| + io_task_runner_->PostTask(FROM_HERE,
|
| + base::Bind(&Delegate::SetResponse,
|
| + base::Unretained(delegate_),
|
| + url,
|
| + path,
|
| + false));
|
| +}
|
| +
|
| +void TestURLRequestInterceptor::SetResponseIgnoreQuery(
|
| + const GURL& url,
|
| + const base::FilePath& path) {
|
| + CHECK_EQ(scheme_, url.scheme());
|
| + CHECK_EQ(hostname_, url.host());
|
| + io_task_runner_->PostTask(FROM_HERE,
|
| + base::Bind(&Delegate::SetResponse,
|
| + base::Unretained(delegate_),
|
| + url,
|
| + path,
|
| + true));
|
| +}
|
| +
|
| +int TestURLRequestInterceptor::GetHitCount() {
|
| + return delegate_->GetHitCount();
|
| +}
|
| +
|
| +LocalHostTestURLRequestInterceptor::LocalHostTestURLRequestInterceptor(
|
| + const scoped_refptr<base::TaskRunner>& io_task_runner,
|
| + const scoped_refptr<base::TaskRunner>& worker_task_runner)
|
| + : TestURLRequestInterceptor("http",
|
| + "localhost",
|
| + io_task_runner,
|
| + worker_task_runner) {
|
| +}
|
| +
|
| +} // namespace net
|
|
|