| // Copyright (c) 2012 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/browsing_data/content/mock_cookie_helper.h" |
| |
| #include <memory> |
| |
| #include "base/callback_helpers.h" |
| #include "base/containers/contains.h" |
| #include "base/time/time.h" |
| #include "content/public/browser/browser_context.h" |
| #include "net/cookies/cookie_options.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| #include "third_party/abseil-cpp/absl/types/optional.h" |
| |
| namespace browsing_data { |
| |
| MockCookieHelper::MockCookieHelper(content::BrowserContext* browser_context) |
| : CookieHelper(browser_context->GetDefaultStoragePartition(), |
| base::NullCallback()) {} |
| |
| MockCookieHelper::~MockCookieHelper() {} |
| |
| void MockCookieHelper::StartFetching(FetchCallback callback) { |
| ASSERT_FALSE(callback.is_null()); |
| ASSERT_TRUE(callback_.is_null()); |
| callback_ = std::move(callback); |
| } |
| |
| void MockCookieHelper::DeleteCookie(const net::CanonicalCookie& cookie) { |
| std::string key = cookie.Name() + "=" + cookie.Value(); |
| ASSERT_TRUE(base::Contains(cookies_, key)); |
| cookies_[key] = false; |
| } |
| |
| void MockCookieHelper::AddCookieSamples(const GURL& url, |
| const std::string& cookie_line) { |
| std::unique_ptr<net::CanonicalCookie> cc(net::CanonicalCookie::Create( |
| url, cookie_line, base::Time::Now(), absl::nullopt /* server_time */, |
| absl::nullopt /* cookie_partition_key */)); |
| |
| if (cc.get()) { |
| for (const auto& cookie : cookie_list_) { |
| if (cookie.Name() == cc->Name() && cookie.Domain() == cc->Domain() && |
| cookie.Path() == cc->Path()) { |
| return; |
| } |
| } |
| cookie_list_.push_back(*cc); |
| cookies_[cookie_line] = true; |
| } |
| } |
| |
| void MockCookieHelper::Notify() { |
| if (!callback_.is_null()) |
| std::move(callback_).Run(cookie_list_); |
| } |
| |
| void MockCookieHelper::Reset() { |
| for (auto& pair : cookies_) |
| pair.second = true; |
| } |
| |
| bool MockCookieHelper::AllDeleted() { |
| for (const auto& pair : cookies_) { |
| if (pair.second) |
| return false; |
| } |
| return true; |
| } |
| |
| } // namespace browsing_data |