OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest.h" | 5 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_settings_unittest.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/metrics/field_trial.h" | 8 #include "base/metrics/field_trial.h" |
9 #include "base/prefs/pref_registry_simple.h" | 9 #include "base/prefs/pref_registry_simple.h" |
10 #include "base/prefs/pref_service.h" | 10 #include "base/prefs/pref_service.h" |
11 #include "base/prefs/testing_pref_service.h" | 11 #include "base/prefs/testing_pref_service.h" |
12 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
13 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_settings.h" | 13 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_settings.h" |
14 #include "chrome/browser/prefs/proxy_prefs.h" | 14 #include "chrome/browser/prefs/proxy_prefs.h" |
15 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 15 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
16 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
17 #include "chrome/common/metrics/variations/variations_util.h" | 17 #include "chrome/common/metrics/variations/variations_util.h" |
18 #include "chrome/common/pref_names.h" | 18 #include "chrome/common/pref_names.h" |
19 #include "components/variations/entropy_provider.h" | 19 #include "components/variations/entropy_provider.h" |
20 #include "net/url_request/test_url_fetcher_factory.h" | 20 #include "net/url_request/test_url_fetcher_factory.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 #include "url/gurl.h" | 22 #include "url/gurl.h" |
23 | 23 |
24 const char kDataReductionProxyOrigin[] = "https://foo:443/"; | 24 const char kDataReductionProxyOrigin[] = "https://foo:443/"; |
25 const char kDataReductionProxyOriginHostPort[] = "foo:443"; | |
26 const char kDataReductionProxyAuth[] = "12345"; | 25 const char kDataReductionProxyAuth[] = "12345"; |
27 | 26 |
28 const char kProbeURLWithOKResponse[] = "http://ok.org/"; | 27 const char kProbeURLWithOKResponse[] = "http://ok.org/"; |
29 const char kProbeURLWithBadResponse[] = "http://bad.org/"; | 28 const char kProbeURLWithBadResponse[] = "http://bad.org/"; |
30 const char kProbeURLWithNoResponse[] = "http://no.org/"; | 29 const char kProbeURLWithNoResponse[] = "http://no.org/"; |
31 | 30 |
32 class TestDataReductionProxySettings | 31 class TestDataReductionProxySettings |
33 : public DataReductionProxySettings { | 32 : public DataReductionProxySettings { |
34 public: | 33 public: |
35 TestDataReductionProxySettings(PrefService* profile_prefs, | 34 TestDataReductionProxySettings(PrefService* profile_prefs, |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 }; | 409 }; |
411 | 410 |
412 ASSERT_EQ(settings_->bypass_rules_.size(), 6u); | 411 ASSERT_EQ(settings_->bypass_rules_.size(), 6u); |
413 int i = 0; | 412 int i = 0; |
414 for (std::vector<std::string>::iterator it = settings_->bypass_rules_.begin(); | 413 for (std::vector<std::string>::iterator it = settings_->bypass_rules_.begin(); |
415 it != settings_->bypass_rules_.end(); ++it) { | 414 it != settings_->bypass_rules_.end(); ++it) { |
416 EXPECT_EQ(expected[i++], *it); | 415 EXPECT_EQ(expected[i++], *it); |
417 } | 416 } |
418 } | 417 } |
419 | 418 |
OLD | NEW |