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 // Mock ServerConnectionManager class for use in client unit tests.
7 #ifndef SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_
8 #define SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_
15 #include "base/callback.h"
16 #include "base/compiler_specific.h"
17 #include "base/memory/scoped_vector.h"
18 #include "base/synchronization/lock.h"
19 #include "sync/engine/net/server_connection_manager.h"
20 #include "sync/internal_api/public/base/model_type.h"
21 #include "sync/internal_api/public/base/unique_position.h"
22 #include "sync/protocol/sync.pb.h"
26 class MockConnectionManager
: public ServerConnectionManager
{
28 class MidCommitObserver
{
30 virtual void Observe() = 0;
33 virtual ~MidCommitObserver() {}
36 MockConnectionManager(syncable::Directory
*,
37 CancelationSignal
* signal
);
38 ~MockConnectionManager() override
;
40 // Overridden ServerConnectionManager functions.
41 bool PostBufferToPath(PostBufferParams
*,
42 const std::string
& path
,
43 const std::string
& auth_token
,
44 ScopedServerStatusWatcher
* watcher
) override
;
46 // Control of commit response.
47 // NOTE: Commit callback is invoked only once then reset.
48 void SetMidCommitCallback(const base::Closure
& callback
);
49 void SetMidCommitObserver(MidCommitObserver
* observer
);
51 // Set this if you want commit to perform commit time rename. Will request
52 // that the client renames all commited entries, prepending this string.
53 void SetCommitTimeRename(std::string prepend
);
55 // Generic versions of AddUpdate functions. Tests using these function should
56 // compile for both the int64 and string id based versions of the server.
57 // The SyncEntity returned is only valid until the Sync is completed
58 // (e.g. with SyncShare.) It allows to add further entity properties before
59 // sync, using SetLastXXX() methods and/or GetMutableLastUpdate().
60 sync_pb::SyncEntity
* AddUpdateDirectory(
62 syncable::Id parent_id
,
66 std::string originator_cache_guid
,
67 std::string originator_client_item_id
);
68 sync_pb::SyncEntity
* AddUpdateBookmark(syncable::Id id
,
69 syncable::Id parent_id
,
73 std::string originator_cache_guid
,
74 std::string originator_client_item_id
);
75 // Versions of the AddUpdate functions that accept integer IDs.
76 sync_pb::SyncEntity
* AddUpdateDirectory(
82 std::string originator_cache_guid
,
83 std::string originator_client_item_id
);
84 sync_pb::SyncEntity
* AddUpdateBookmark(int id
,
89 std::string originator_cache_guid
,
90 std::string originator_client_item_id
);
91 // New protocol versions of the AddUpdate functions.
92 sync_pb::SyncEntity
* AddUpdateDirectory(
94 std::string parent_id
,
98 std::string originator_cache_guid
,
99 std::string originator_client_item_id
);
100 sync_pb::SyncEntity
* AddUpdateBookmark(std::string id
,
101 std::string parent_id
,
105 std::string originator_cache_guid
,
106 std::string originator_client_item_id
);
107 // Versions of the AddUpdate function that accept specifics.
108 sync_pb::SyncEntity
* AddUpdateSpecifics(
116 const sync_pb::EntitySpecifics
& specifics
);
117 sync_pb::SyncEntity
* AddUpdateSpecifics(
125 const sync_pb::EntitySpecifics
& specifics
,
126 std::string originator_cache_guid
,
127 std::string originator_client_item_id
);
128 sync_pb::SyncEntity
* SetNigori(
132 const sync_pb::EntitySpecifics
& specifics
);
133 // Unique client tag variant for adding items.
134 sync_pb::SyncEntity
* AddUpdatePref(std::string id
,
135 std::string parent_id
,
136 std::string client_tag
,
140 // Find the last commit sent by the client, and replay it for the next get
141 // updates command. This can be used to simulate the GetUpdates that happens
142 // immediately after a successful commit.
143 sync_pb::SyncEntity
* AddUpdateFromLastCommit();
145 // Add a deleted item. Deletion records typically contain no
146 // additional information beyond the deletion, and no specifics.
147 // The server may send the originator fields.
148 void AddUpdateTombstone(const syncable::Id
& id
, ModelType type
);
150 void SetLastUpdateDeleted();
151 void SetLastUpdateServerTag(const std::string
& tag
);
152 void SetLastUpdateClientTag(const std::string
& tag
);
153 void SetLastUpdateOriginatorFields(const std::string
& client_id
,
154 const std::string
& entry_id
);
155 void SetLastUpdatePosition(int64 position_in_parent
);
156 void SetNewTimestamp(int ts
);
157 void SetChangesRemaining(int64 count
);
159 // Add a new batch of updates after the current one. Allows multiple
160 // GetUpdates responses to be buffered up, since the syncer may
161 // issue multiple requests during a sync cycle.
162 void NextUpdateBatch();
164 void FailNextPostBufferToPathCall() { countdown_to_postbuffer_fail_
= 1; }
165 void FailNthPostBufferToPathCall(int n
) { countdown_to_postbuffer_fail_
= n
; }
167 void SetKeystoreKey(const std::string
& key
);
169 void FailNonPeriodicGetUpdates() { fail_non_periodic_get_updates_
= true; }
171 // Simple inspectors.
172 bool client_stuck() const { return client_stuck_
; }
174 // warning: These take ownership of their input.
175 void SetGUClientCommand(sync_pb::ClientCommand
* command
);
176 void SetCommitClientCommand(sync_pb::ClientCommand
* command
);
178 void SetTransientErrorId(syncable::Id
);
180 const std::vector
<syncable::Id
>& committed_ids() const {
181 return committed_ids_
;
183 const std::vector
<sync_pb::CommitMessage
*>& commit_messages() const {
184 return commit_messages_
.get();
186 const std::vector
<sync_pb::CommitResponse
*>& commit_responses() const {
187 return commit_responses_
.get();
189 // Retrieve the last sent commit message.
190 const sync_pb::CommitMessage
& last_sent_commit() const;
192 // Retrieve the last returned commit response.
193 const sync_pb::CommitResponse
& last_commit_response() const;
195 // Retrieve the last request submitted to the server (regardless of type).
196 const sync_pb::ClientToServerMessage
& last_request() const;
198 // Retrieve the cumulative collection of all requests sent by clients.
199 const std::vector
<sync_pb::ClientToServerMessage
>& requests() const;
201 void set_conflict_all_commits(bool value
) {
202 conflict_all_commits_
= value
;
204 void set_next_new_id(int value
) {
205 next_new_id_
= value
;
207 void set_conflict_n_commits(int value
) {
208 conflict_n_commits_
= value
;
211 void set_use_legacy_bookmarks_protocol(bool value
) {
212 use_legacy_bookmarks_protocol_
= value
;
215 void set_store_birthday(std::string new_birthday
) {
216 // Multiple threads can set store_birthday_ in our tests, need to lock it to
217 // ensure atomic read/writes and avoid race conditions.
218 base::AutoLock
lock(store_birthday_lock_
);
219 store_birthday_
= new_birthday
;
222 void set_partial_throttling(bool value
) { partialThrottling_
= value
; }
224 // Retrieve the number of GetUpdates requests that the mock server has
225 // seen since the last time this function was called. Can be used to
226 // verify that a GetUpdates actually did or did not happen after running
228 int GetAndClearNumGetUpdatesRequests() {
229 int result
= num_get_updates_requests_
;
230 num_get_updates_requests_
= 0;
234 // Expect that GetUpdates will request exactly the types indicated in
236 void ExpectGetUpdatesRequestTypes(ModelTypeSet expected_filter
) {
237 expected_filter_
= expected_filter
;
240 // Set throttled date types.
241 void SetThrottledTypes(ModelTypeSet types
) { throttled_type_
= types
; }
243 void SetServerReachable();
245 void SetServerNotReachable();
247 // Updates our internal state as if we had attempted a connection. Does not
248 // send notifications as a real connection attempt would. This is useful in
249 // cases where we're mocking out most of the code that performs network
251 void UpdateConnectionStatus();
253 void SetServerStatus(HttpResponse::ServerConnectionCode server_status
);
255 // Return by copy to be thread-safe.
256 const std::string
store_birthday() {
257 base::AutoLock
lock(store_birthday_lock_
);
258 return store_birthday_
;
261 // Explicitly indicate that we will not be fetching some updates.
262 void ClearUpdatesQueue() {
263 update_queue_
.clear();
266 // Locate the most recent update message for purpose of alteration.
267 sync_pb::SyncEntity
* GetMutableLastUpdate();
270 sync_pb::SyncEntity
* AddUpdateFull(syncable::Id id
, syncable::Id parentid
,
271 std::string name
, int64 version
,
274 sync_pb::SyncEntity
* AddUpdateFull(std::string id
,
275 std::string parentid
, std::string name
,
276 int64 version
, int64 sync_ts
,
278 sync_pb::SyncEntity
* AddUpdateMeta(std::string id
, std::string parentid
,
279 std::string name
, int64 version
,
282 // Functions to handle the various types of server request.
283 void ProcessGetUpdates(sync_pb::ClientToServerMessage
* csm
,
284 sync_pb::ClientToServerResponse
* response
);
285 void ProcessCommit(sync_pb::ClientToServerMessage
* csm
,
286 sync_pb::ClientToServerResponse
* response_buffer
);
287 void ProcessClearData(sync_pb::ClientToServerMessage
* csm
,
288 sync_pb::ClientToServerResponse
* response
);
289 void AddDefaultBookmarkData(sync_pb::SyncEntity
* entity
, bool is_folder
);
291 // Determine if one entry in a commit should be rejected with a conflict.
292 bool ShouldConflictThisCommit();
294 // Determine if the given item's commit request should be refused with
295 // a TRANSIENT_ERROR response.
296 bool ShouldTransientErrorThisId(syncable::Id id
);
298 // Generate a numeric position_in_parent value. We use a global counter
299 // that only decreases; this simulates new objects always being added to the
300 // front of the ordering.
301 int64
GeneratePositionInParent() {
302 return next_position_in_parent_
--;
305 // Get a mutable update response which will eventually be returned to the
307 sync_pb::GetUpdatesResponse
* GetUpdateResponse();
310 // Determine whether an progress marker array (like that sent in
311 // GetUpdates.from_progress_marker) indicates that a particular ModelType
312 // should be included.
313 bool IsModelTypePresentInSpecifics(
314 const google::protobuf::RepeatedPtrField
<
315 sync_pb::DataTypeProgressMarker
>& filter
,
318 sync_pb::DataTypeProgressMarker
const* GetProgressMarkerForType(
319 const google::protobuf::RepeatedPtrField
<
320 sync_pb::DataTypeProgressMarker
>& filter
,
323 // When false, we pretend to have network connectivity issues.
324 bool server_reachable_
;
326 // All IDs that have been committed.
327 std::vector
<syncable::Id
> committed_ids_
;
329 // List of IDs which should return a transient error.
330 std::vector
<syncable::Id
> transient_error_ids_
;
332 // Control of when/if we return conflicts.
333 bool conflict_all_commits_
;
334 int conflict_n_commits_
;
336 // Commit messages we've sent, and responses we've returned.
337 ScopedVector
<sync_pb::CommitMessage
> commit_messages_
;
338 ScopedVector
<sync_pb::CommitResponse
> commit_responses_
;
340 // The next id the mock will return to a commit.
343 // The store birthday we send to the client.
344 std::string store_birthday_
;
345 base::Lock store_birthday_lock_
;
346 bool store_birthday_sent_
;
348 std::string commit_time_rename_prepended_string_
;
350 // On each PostBufferToPath() call, we decrement this counter. The call fails
351 // iff we hit zero at that call.
352 int countdown_to_postbuffer_fail_
;
354 // Our directory. Used only to ensure that we are not holding the transaction
355 // lock when performing network I/O. Can be NULL if the test author is
356 // confident this can't happen.
357 syncable::Directory
* directory_
;
359 // The updates we'll return to the next request.
360 std::list
<sync_pb::GetUpdatesResponse
> update_queue_
;
361 base::Closure mid_commit_callback_
;
362 MidCommitObserver
* mid_commit_observer_
;
364 // The keystore key we return for a GetUpdates with need_encryption_key set.
365 std::string keystore_key_
;
367 // The AUTHENTICATE response we'll return for auth requests.
368 sync_pb::AuthenticateResponse auth_response_
;
369 // What we use to determine if we should return SUCCESS or BAD_AUTH_TOKEN.
370 std::string valid_auth_token_
;
372 // Whether we are faking a server mandating clients to throttle requests.
373 // Protected by |response_code_override_lock_|.
376 // Whether we are faking a server mandating clients to partial throttle
378 // Protected by |response_code_override_lock_|.
379 bool partialThrottling_
;
381 // Whether we are failing all requests by returning
382 // ClientToServerResponse::AUTH_INVALID.
383 // Protected by |response_code_override_lock_|.
384 bool fail_with_auth_invalid_
;
386 base::Lock response_code_override_lock_
;
388 // True if we are only accepting GetUpdatesCallerInfo::PERIODIC requests.
389 bool fail_non_periodic_get_updates_
;
391 scoped_ptr
<sync_pb::ClientCommand
> gu_client_command_
;
392 scoped_ptr
<sync_pb::ClientCommand
> commit_client_command_
;
394 // The next value to use for the position_in_parent property.
395 int64 next_position_in_parent_
;
397 // The default is to use the newer sync_pb::BookmarkSpecifics-style protocol.
398 // If this option is set to true, then the MockConnectionManager will
399 // use the older sync_pb::SyncEntity_BookmarkData-style protocol.
400 bool use_legacy_bookmarks_protocol_
;
402 ModelTypeSet expected_filter_
;
404 ModelTypeSet throttled_type_
;
406 int num_get_updates_requests_
;
408 std::string next_token_
;
410 std::vector
<sync_pb::ClientToServerMessage
> requests_
;
412 DISALLOW_COPY_AND_ASSIGN(MockConnectionManager
);
415 } // namespace syncer
417 #endif // SYNC_TEST_ENGINE_MOCK_CONNECTION_MANAGER_H_