| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/base/net_errors.h" | 5 #include "net/base/net_errors.h" |
| 6 #include "net/base/static_cookie_policy.h" | 6 #include "net/base/static_cookie_policy.h" |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 #include "googleurl/src/gurl.h" | 8 #include "url/gurl.h" |
| 9 | 9 |
| 10 namespace net { | 10 namespace net { |
| 11 | 11 |
| 12 class StaticCookiePolicyTest : public testing::Test { | 12 class StaticCookiePolicyTest : public testing::Test { |
| 13 public: | 13 public: |
| 14 StaticCookiePolicyTest() | 14 StaticCookiePolicyTest() |
| 15 : url_google_("http://www.google.izzle"), | 15 : url_google_("http://www.google.izzle"), |
| 16 url_google_secure_("https://www.google.izzle"), | 16 url_google_secure_("https://www.google.izzle"), |
| 17 url_google_mail_("http://mail.google.izzle"), | 17 url_google_mail_("http://mail.google.izzle"), |
| 18 url_google_analytics_("http://www.googleanalytics.izzle") { | 18 url_google_analytics_("http://www.googleanalytics.izzle") { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 EXPECT_NE(OK, CanGetCookies(url_google_, GURL())); | 106 EXPECT_NE(OK, CanGetCookies(url_google_, GURL())); |
| 107 | 107 |
| 108 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_)); | 108 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_)); |
| 109 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_secure_)); | 109 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_secure_)); |
| 110 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_mail_)); | 110 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_mail_)); |
| 111 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_analytics_)); | 111 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_analytics_)); |
| 112 EXPECT_NE(OK, CanSetCookie(url_google_, GURL())); | 112 EXPECT_NE(OK, CanSetCookie(url_google_, GURL())); |
| 113 } | 113 } |
| 114 | 114 |
| 115 } // namespace net | 115 } // namespace net |
| OLD | NEW |