| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "net/proxy/proxy_config_service_common_unittest.h" | 5 #include "net/proxy/proxy_config_service_common_unittest.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "net/proxy/proxy_config.h" | 10 #include "net/proxy/proxy_config.h" |
| 11 | 11 |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 // Helper to verify that |expected_proxy| matches |actual_proxy|. If it does | 18 // Helper to verify that |expected_proxy| matches the first proxy conatined in |
| 19 // not, then |*did_fail| is set to true, and |*failure_details| is filled with | 19 // |actual_proxies|, and that |actual_proxies| contains exactly one proxy. If |
| 20 // a description of the failure. | 20 // either condition is untrue, then |*did_fail| is set to true, and |
| 21 // |*failure_details| is filled with a description of the failure. |
| 21 void MatchesProxyServerHelper(const char* failure_message, | 22 void MatchesProxyServerHelper(const char* failure_message, |
| 22 const char* expected_proxy, | 23 const char* expected_proxy, |
| 23 const ProxyServer& actual_proxy, | 24 const ProxyList& actual_proxies, |
| 24 ::testing::AssertionResult* failure_details, | 25 ::testing::AssertionResult* failure_details, |
| 25 bool* did_fail) { | 26 bool* did_fail) { |
| 27 if (actual_proxies.size() != 1) { |
| 28 *did_fail = true; |
| 29 *failure_details |
| 30 << failure_message << ". Was expecting exactly one proxy but got " |
| 31 << actual_proxies.size() << "."; |
| 32 return; |
| 33 } |
| 34 |
| 35 ProxyServer actual_proxy = actual_proxies.Get(); |
| 26 std::string actual_proxy_string; | 36 std::string actual_proxy_string; |
| 27 if (actual_proxy.is_valid()) | 37 if (actual_proxy.is_valid()) |
| 28 actual_proxy_string = actual_proxy.ToURI(); | 38 actual_proxy_string = actual_proxy.ToURI(); |
| 29 | 39 |
| 30 if (std::string(expected_proxy) != actual_proxy_string) { | 40 if (std::string(expected_proxy) != actual_proxy_string) { |
| 31 *failure_details | 41 *failure_details |
| 32 << failure_message << ". Was expecting: \"" << expected_proxy | 42 << failure_message << ". Was expecting: \"" << expected_proxy |
| 33 << "\" but got: \"" << actual_proxy_string << "\""; | 43 << "\" but got: \"" << actual_proxy_string << "\""; |
| 34 *did_fail = true; | 44 *did_fail = true; |
| 35 } | 45 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 ::testing::AssertionResult failure_details = ::testing::AssertionFailure(); | 84 ::testing::AssertionResult failure_details = ::testing::AssertionFailure(); |
| 75 bool failed = false; | 85 bool failed = false; |
| 76 | 86 |
| 77 if (rules.type != type) { | 87 if (rules.type != type) { |
| 78 failure_details << "Type mismatch. Expected: " | 88 failure_details << "Type mismatch. Expected: " |
| 79 << type << " but was: " << rules.type; | 89 << type << " but was: " << rules.type; |
| 80 failed = true; | 90 failed = true; |
| 81 } | 91 } |
| 82 | 92 |
| 83 MatchesProxyServerHelper("Bad single_proxy", single_proxy, | 93 MatchesProxyServerHelper("Bad single_proxy", single_proxy, |
| 84 rules.single_proxy, &failure_details, &failed); | 94 rules.single_proxies, &failure_details, &failed); |
| 85 MatchesProxyServerHelper("Bad proxy_for_http", proxy_for_http, | 95 MatchesProxyServerHelper("Bad proxy_for_http", proxy_for_http, |
| 86 rules.proxy_for_http, &failure_details, &failed); | 96 rules.proxies_for_http, &failure_details, |
| 97 &failed); |
| 87 MatchesProxyServerHelper("Bad proxy_for_https", proxy_for_https, | 98 MatchesProxyServerHelper("Bad proxy_for_https", proxy_for_https, |
| 88 rules.proxy_for_https, &failure_details, &failed); | 99 rules.proxies_for_https, &failure_details, |
| 89 MatchesProxyServerHelper("Bad fallback_proxy", fallback_proxy, | 100 &failed); |
| 90 rules.fallback_proxy, &failure_details, &failed); | |
| 91 | 101 |
| 92 std::string actual_flattened_bypass = FlattenProxyBypass(rules.bypass_rules); | 102 std::string actual_flattened_bypass = FlattenProxyBypass(rules.bypass_rules); |
| 93 if (std::string(flattened_bypass_rules) != actual_flattened_bypass) { | 103 if (std::string(flattened_bypass_rules) != actual_flattened_bypass) { |
| 94 failure_details | 104 failure_details |
| 95 << "Bad bypass rules. Expected: \"" << flattened_bypass_rules | 105 << "Bad bypass rules. Expected: \"" << flattened_bypass_rules |
| 96 << "\" but got: \"" << actual_flattened_bypass << "\""; | 106 << "\" but got: \"" << actual_flattened_bypass << "\""; |
| 97 failed = true; | 107 failed = true; |
| 98 } | 108 } |
| 99 | 109 |
| 100 if (rules.reverse_bypass != reverse_bypass) { | 110 if (rules.reverse_bypass != reverse_bypass) { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 const char* proxy_http, | 167 const char* proxy_http, |
| 158 const char* proxy_https, | 168 const char* proxy_https, |
| 159 const char* proxy_ftp, | 169 const char* proxy_ftp, |
| 160 const char* flattened_bypass_rules) { | 170 const char* flattened_bypass_rules) { |
| 161 return ProxyRulesExpectation(ProxyConfig::ProxyRules::TYPE_PROXY_PER_SCHEME, | 171 return ProxyRulesExpectation(ProxyConfig::ProxyRules::TYPE_PROXY_PER_SCHEME, |
| 162 "", proxy_http, proxy_https, proxy_ftp, "", | 172 "", proxy_http, proxy_https, proxy_ftp, "", |
| 163 flattened_bypass_rules, true); | 173 flattened_bypass_rules, true); |
| 164 } | 174 } |
| 165 | 175 |
| 166 } // namespace net | 176 } // namespace net |
| OLD | NEW |