| 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 "url/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") {} |
| 19 } | 19 void SetPolicyType(StaticCookiePolicy::Type type) { policy_.set_type(type); } |
| 20 void SetPolicyType(StaticCookiePolicy::Type type) { | |
| 21 policy_.set_type(type); | |
| 22 } | |
| 23 int CanGetCookies(const GURL& url, const GURL& first_party) { | 20 int CanGetCookies(const GURL& url, const GURL& first_party) { |
| 24 return policy_.CanGetCookies(url, first_party); | 21 return policy_.CanGetCookies(url, first_party); |
| 25 } | 22 } |
| 26 int CanSetCookie(const GURL& url, const GURL& first_party) { | 23 int CanSetCookie(const GURL& url, const GURL& first_party) { |
| 27 return policy_.CanSetCookie(url, first_party); | 24 return policy_.CanSetCookie(url, first_party); |
| 28 } | 25 } |
| 26 |
| 29 protected: | 27 protected: |
| 30 StaticCookiePolicy policy_; | 28 StaticCookiePolicy policy_; |
| 31 GURL url_google_; | 29 GURL url_google_; |
| 32 GURL url_google_secure_; | 30 GURL url_google_secure_; |
| 33 GURL url_google_mail_; | 31 GURL url_google_mail_; |
| 34 GURL url_google_analytics_; | 32 GURL url_google_analytics_; |
| 35 }; | 33 }; |
| 36 | 34 |
| 37 TEST_F(StaticCookiePolicyTest, DefaultPolicyTest) { | 35 TEST_F(StaticCookiePolicyTest, DefaultPolicyTest) { |
| 38 EXPECT_EQ(OK, CanGetCookies(url_google_, url_google_)); | 36 EXPECT_EQ(OK, CanGetCookies(url_google_, url_google_)); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 EXPECT_NE(OK, CanGetCookies(url_google_, GURL())); | 88 EXPECT_NE(OK, CanGetCookies(url_google_, GURL())); |
| 91 | 89 |
| 92 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_)); | 90 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_)); |
| 93 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_secure_)); | 91 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_secure_)); |
| 94 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_mail_)); | 92 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_mail_)); |
| 95 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_analytics_)); | 93 EXPECT_NE(OK, CanSetCookie(url_google_, url_google_analytics_)); |
| 96 EXPECT_NE(OK, CanSetCookie(url_google_, GURL())); | 94 EXPECT_NE(OK, CanSetCookie(url_google_, GURL())); |
| 97 } | 95 } |
| 98 | 96 |
| 99 } // namespace net | 97 } // namespace net |
| OLD | NEW |