1 // Copyright 2014 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 COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_
6 #define COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_
8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h"
10 #include "components/gcm_driver/gcm_client.h"
13 class SequencedTaskRunner
;
18 class FakeGCMClient
: public GCMClient
{
32 FakeGCMClient(StartMode start_mode
,
33 const scoped_refptr
<base::SequencedTaskRunner
>& ui_thread
,
34 const scoped_refptr
<base::SequencedTaskRunner
>& io_thread
);
35 ~FakeGCMClient() override
;
37 // Overridden from GCMClient:
38 // Called on IO thread.
40 const ChromeBuildInfo
& chrome_build_info
,
41 const base::FilePath
& store_path
,
42 const scoped_refptr
<base::SequencedTaskRunner
>& blocking_task_runner
,
43 const scoped_refptr
<net::URLRequestContextGetter
>&
44 url_request_context_getter
,
45 scoped_ptr
<Encryptor
> encryptor
,
46 Delegate
* delegate
) override
;
47 void Start() override
;
49 void CheckOut() override
;
50 void Register(const std::string
& app_id
,
51 const std::vector
<std::string
>& sender_ids
) override
;
52 void Unregister(const std::string
& app_id
) override
;
53 void Send(const std::string
& app_id
,
54 const std::string
& receiver_id
,
55 const OutgoingMessage
& message
) override
;
56 void SetRecording(bool recording
) override
;
57 void ClearActivityLogs() override
;
58 GCMStatistics
GetStatistics() const override
;
59 void SetAccountTokens(
60 const std::vector
<AccountTokenInfo
>& account_tokens
) override
;
61 void UpdateAccountMapping(const AccountMapping
& account_mapping
) override
;
62 void RemoveAccountMapping(const std::string
& account_id
) override
;
64 // Initiate the loading that has been delayed.
65 // Called on UI thread.
66 void PerformDelayedLoading();
68 // Simulate receiving something from the server.
69 // Called on UI thread.
70 void ReceiveMessage(const std::string
& app_id
,
71 const IncomingMessage
& message
);
72 void DeleteMessages(const std::string
& app_id
);
74 std::string
GetRegistrationIdFromSenderIds(
75 const std::vector
<std::string
>& sender_ids
) const;
77 Status
status() const { return status_
; }
80 // Called on IO thread.
82 void CheckinFinished();
83 void RegisterFinished(const std::string
& app_id
,
84 const std::string
& registrion_id
);
85 void UnregisterFinished(const std::string
& app_id
);
86 void SendFinished(const std::string
& app_id
, const OutgoingMessage
& message
);
87 void MessageReceived(const std::string
& app_id
,
88 const IncomingMessage
& message
);
89 void MessagesDeleted(const std::string
& app_id
);
90 void MessageSendError(const std::string
& app_id
,
91 const SendErrorDetails
& send_error_details
);
92 void SendAcknowledgement(const std::string
& app_id
,
93 const std::string
& message_id
);
96 // Increased at checkout in order to produce a different registration ID
97 // after checkout and re-checkin.
100 StartMode start_mode_
;
101 scoped_refptr
<base::SequencedTaskRunner
> ui_thread_
;
102 scoped_refptr
<base::SequencedTaskRunner
> io_thread_
;
103 base::WeakPtrFactory
<FakeGCMClient
> weak_ptr_factory_
;
105 DISALLOW_COPY_AND_ASSIGN(FakeGCMClient
);
110 #endif // COMPONENTS_GCM_DRIVER_FAKE_GCM_CLIENT_H_