Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / net / cookies / cookie_store_test_helpers.h
blob84b83bc062cb0772b06c542e3a881253d253f867
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_COOKIES_COOKIE_STORE_TEST_HELPERS_H_
6 #define NET_COOKIES_COOKIE_STORE_TEST_HELPERS_H_
8 #include "net/cookies/cookie_monster.h"
10 #include <string>
11 #include <vector>
13 #include "base/callback_forward.h"
14 #include "testing/gtest/include/gtest/gtest.h"
16 namespace net {
18 class DelayedCookieMonster : public CookieStore {
19 public:
20 DelayedCookieMonster();
22 // Call the asynchronous CookieMonster function, expect it to immediately
23 // invoke the internal callback.
24 // Post a delayed task to invoke the original callback with the results.
26 virtual void SetCookieWithOptionsAsync(
27 const GURL& url,
28 const std::string& cookie_line,
29 const CookieOptions& options,
30 const CookieMonster::SetCookiesCallback& callback) OVERRIDE;
32 virtual void GetCookiesWithOptionsAsync(
33 const GURL& url,
34 const CookieOptions& options,
35 const CookieMonster::GetCookiesCallback& callback) OVERRIDE;
37 virtual void GetAllCookiesForURLAsync(
38 const GURL& url,
39 const GetCookieListCallback& callback) OVERRIDE;
41 virtual bool SetCookieWithOptions(const GURL& url,
42 const std::string& cookie_line,
43 const CookieOptions& options);
45 virtual std::string GetCookiesWithOptions(const GURL& url,
46 const CookieOptions& options);
48 virtual void DeleteCookie(const GURL& url,
49 const std::string& cookie_name);
51 virtual void DeleteCookieAsync(const GURL& url,
52 const std::string& cookie_name,
53 const base::Closure& callback) OVERRIDE;
55 virtual void DeleteAllCreatedBetweenAsync(
56 const base::Time& delete_begin,
57 const base::Time& delete_end,
58 const DeleteCallback& callback) OVERRIDE;
60 virtual void DeleteAllCreatedBetweenForHostAsync(
61 const base::Time delete_begin,
62 const base::Time delete_end,
63 const GURL& url,
64 const DeleteCallback& callback) OVERRIDE;
66 virtual void DeleteSessionCookiesAsync(const DeleteCallback&) OVERRIDE;
68 virtual CookieMonster* GetCookieMonster() OVERRIDE;
70 private:
72 // Be called immediately from CookieMonster.
74 void SetCookiesInternalCallback(bool result);
76 void GetCookiesWithOptionsInternalCallback(const std::string& cookie);
78 // Invoke the original callbacks.
80 void InvokeSetCookiesCallback(
81 const CookieMonster::SetCookiesCallback& callback);
83 void InvokeGetCookieStringCallback(
84 const CookieMonster::GetCookiesCallback& callback);
86 friend class base::RefCountedThreadSafe<DelayedCookieMonster>;
87 virtual ~DelayedCookieMonster();
89 scoped_refptr<CookieMonster> cookie_monster_;
91 bool did_run_;
92 bool result_;
93 std::string cookie_;
94 std::string cookie_line_;
97 } // namespace net
99 #endif // NET_COOKIES_COOKIE_STORE_TEST_HELPERS_H_