Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle_unittest.cc

Issue 684223003: Data Reduction Proxy Interstitials (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Thestig comment and test fix Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle_unittest.cc
diff --git a/components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle_unittest.cc b/components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..2f646f1f26e3227a7cebcd1996bd36d6c64eeb53
--- /dev/null
+++ b/components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle_unittest.cc
@@ -0,0 +1,141 @@
+// Copyright 2015 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 "components/data_reduction_proxy/content/browser/data_reduction_proxy_debug_resource_throttle.h"
+
+#include "base/bind.h"
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/message_loop/message_loop.h"
+#include "components/data_reduction_proxy/content/browser/content_data_reduction_proxy_debug_ui_service.h"
+#include "components/data_reduction_proxy/core/browser/data_reduction_proxy_network_delegate.h"
+#include "components/data_reduction_proxy/core/common/data_reduction_proxy_params_test_utils.h"
+#include "content/public/browser/browser_thread.h"
+#include "content/public/common/resource_type.h"
+#include "net/base/load_flags.h"
+#include "net/proxy/proxy_config.h"
+#include "net/url_request/redirect_info.h"
+#include "net/url_request/url_request.h"
+#include "net/url_request/url_request_job_factory_impl.h"
+#include "net/url_request/url_request_test_util.h"
+#include "testing/gtest/include/gtest/gtest.h"
+#include "url/gurl.h"
+
+namespace base {
+class TimeDelta;
+}
+
+namespace data_reduction_proxy {
+
+namespace {
+class TestDataReductionProxyDebugResourceThrottle
+ : public DataReductionProxyDebugResourceThrottle {
+ public:
+ TestDataReductionProxyDebugResourceThrottle(
+ net::URLRequest* request,
+ content::ResourceType resource_type,
+ DataReductionProxyDebugUIService* ui_service,
+ const DataReductionProxyParams* params)
+ : DataReductionProxyDebugResourceThrottle(
+ request, resource_type, ui_service, params) {
+ }
+
+ ~TestDataReductionProxyDebugResourceThrottle() override {
+ }
+
+ private:
+ void DisplayBlockingPage(bool* defer) override {
+ *defer = true;
+ }
+
+ DISALLOW_COPY_AND_ASSIGN(TestDataReductionProxyDebugResourceThrottle);
+};
+} // namespace
+
+class DataReductionProxyDebugResourceThrottleTest : public testing::Test {
+ public:
+ DataReductionProxyDebugResourceThrottleTest() : context_(true) {
+ context_.Init();
+
+ // The |test_job_factory_| takes ownership of the interceptor.
+ test_job_interceptor_ = new net::TestJobInterceptor();
+ EXPECT_TRUE(test_job_factory_.SetProtocolHandler(url::kHttpScheme,
+ test_job_interceptor_));
+
+ context_.set_job_factory(&test_job_factory_);
+
+ request_ = context_.CreateRequest(GURL("http://www.google.com/"), net::IDLE,
+ &delegate_, NULL);
+ ui_service_.reset(new ContentDataReductionProxyDebugUIService(
+ base::Bind(
+ &DataReductionProxyDebugResourceThrottleTest::
+ data_reduction_proxy_config,
+ base::Unretained(this)),
+ content::BrowserThread::GetMessageLoopProxyForThread(
+ content::BrowserThread::UI),
+ content::BrowserThread::GetMessageLoopProxyForThread(
+ content::BrowserThread::IO)));
+ params_.reset(new TestDataReductionProxyParams(0, 0));
+ resource_throttle_.reset(new TestDataReductionProxyDebugResourceThrottle(
+ request_.get(), content::RESOURCE_TYPE_MAIN_FRAME,
+ ui_service_.get(), params_.get()));
+ }
+
+ const net::ProxyConfig& data_reduction_proxy_config() const {
+ return proxy_config_;
+ }
+
+ protected:
+ // Required for base::MessageLoopProxy::current().
+ base::MessageLoopForIO loop_;
+
+ net::TestURLRequestContext context_;
+ net::TestDelegate delegate_;
+ // |test_job_interceptor_| is owned by |test_job_factory_|.
+ net::TestJobInterceptor* test_job_interceptor_;
+ net::URLRequestJobFactoryImpl test_job_factory_;
+
+ net::ProxyConfig proxy_config_;
+ scoped_ptr<net::URLRequest> request_;
+ scoped_ptr<ContentDataReductionProxyDebugUIService> ui_service_;
+ scoped_ptr<TestDataReductionProxyParams> params_;
+ scoped_ptr<TestDataReductionProxyDebugResourceThrottle> resource_throttle_;
+};
+
+// Expect to show the interstitial (defer == true), when the data reduction
+// proxy is bypassed by the proxy server, but not when bypassed by local rules
+// on the client (even when the proxy has already been bypassed by the server).
+TEST_F(DataReductionProxyDebugResourceThrottleTest, WillStartUsingNetwork) {
+ bool defer = false;
+ params_->MockAreDataReductionProxiesBypassed(false);
+ resource_throttle_->WillStartUsingNetwork(&defer);
+ EXPECT_FALSE(defer);
+
+ params_->MockAreDataReductionProxiesBypassed(true);
+ params_->MockIsBypassedByDataReductionProxyLocalRules(false);
+ resource_throttle_->WillStartUsingNetwork(&defer);
+ EXPECT_TRUE(defer);
+
+ // Must be tested last because this sets |state_| of |resource_throttle_|
+ // to LOCAL_BYPASS.
+ defer = false;
+ params_->MockAreDataReductionProxiesBypassed(true);
+ params_->MockIsBypassedByDataReductionProxyLocalRules(true);
+ resource_throttle_->WillStartUsingNetwork(&defer);
+ EXPECT_FALSE(defer);
+}
+
+// Expect to show the interstitial (defer = true) when the LOAD_BYPASS_PROXY
+// flag is not set, but not when it is.
+TEST_F(DataReductionProxyDebugResourceThrottleTest, WillRedirectRequest) {
+ bool defer = false;
+ resource_throttle_->WillRedirectRequest(net::RedirectInfo(), &defer);
+ EXPECT_FALSE(defer);
+
+ request_->SetLoadFlags(net::LOAD_BYPASS_PROXY);
+ resource_throttle_->WillRedirectRequest(net::RedirectInfo(), &defer);
+ EXPECT_TRUE(defer);
+}
+
+} // namespace data_reduction_proxy

Powered by Google App Engine
This is Rietveld 408576698