File: mock_connection_manager.cc

package info (click to toggle)
chromium 139.0.7258.127-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,122,156 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (678 lines) | stat: -rw-r--r-- 23,161 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/sync/test/mock_connection_manager.h"

#include <map>
#include <utility>

#include "base/containers/contains.h"
#include "base/location.h"
#include "base/strings/stringprintf.h"
#include "base/uuid.h"
#include "components/sync/engine/syncer_proto_util.h"
#include "components/sync/protocol/bookmark_specifics.pb.h"
#include "components/sync/protocol/client_commands.pb.h"
#include "components/sync/protocol/data_type_progress_marker.pb.h"
#include "components/sync/protocol/entity_specifics.pb.h"
#include "components/sync/protocol/sync.pb.h"
#include "components/sync/protocol/sync_entity.pb.h"
#include "net/base/net_errors.h"
#include "net/http/http_status_code.h"
#include "testing/gtest/include/gtest/gtest.h"

using std::map;
using std::string;
using sync_pb::ClientToServerMessage;
using sync_pb::CommitMessage;
using sync_pb::CommitResponse;
using sync_pb::GetUpdatesMessage;
using sync_pb::SyncEnums;

namespace syncer {

static char kValidAccessToken[] = "AccessToken";
static char kCacheGuid[] = "kqyg7097kro6GSUod+GSg==";

MockConnectionManager::MockConnectionManager() {
  SetNewTimestamp(0);
  SetAccessToken(kValidAccessToken);
}

MockConnectionManager::~MockConnectionManager() {
  EXPECT_TRUE(update_queue_.empty()) << "Unfetched updates.";
}

void MockConnectionManager::SetMidCommitCallback(base::OnceClosure callback) {
  mid_commit_callback_ = std::move(callback);
}

void MockConnectionManager::SetMidCommitObserver(
    MockConnectionManager::MidCommitObserver* observer) {
  mid_commit_observer_ = observer;
}

HttpResponse MockConnectionManager::PostBuffer(const std::string& buffer_in,
                                               const std::string& access_token,
                                               std::string* buffer_out) {
  ClientToServerMessage post;
  if (!post.ParseFromString(buffer_in) || !post.has_protocol_version() ||
      !post.has_api_key() || !post.has_bag_of_chips()) {
    ADD_FAILURE();
    // Note: Here and below, ForNetError() is chosen somewhat arbitrarily, since
    // HttpResponse doesn't have any better-fitting type of error.
    return HttpResponse::ForNetError(net::ERR_FAILED);
  }

  requests_.push_back(post);

  sync_pb::ClientToServerResponse client_to_server_response;
  client_to_server_response.Clear();

  if (access_token.empty()) {
    return HttpResponse::ForNetError(net::HTTP_UNAUTHORIZED);
  }

  if (access_token != kValidAccessToken) {
    // Simulate server-side auth failure.
    ClearAccessToken();
    return HttpResponse::ForNetError(net::HTTP_UNAUTHORIZED);
  }

  if (--countdown_to_postbuffer_fail_ == 0) {
    // Fail as countdown hits zero.
    return HttpResponse::ForHttpStatusCode(net::HTTP_BAD_REQUEST);
  }

  if (!server_reachable_) {
    return HttpResponse::ForNetError(net::ERR_FAILED);
  }

  // Default to an ok connection.
  client_to_server_response.set_error_code(SyncEnums::SUCCESS);
  const string current_store_birthday = store_birthday();
  client_to_server_response.set_store_birthday(current_store_birthday);
  if (post.has_store_birthday() &&
      post.store_birthday() != current_store_birthday) {
    client_to_server_response.set_error_code(SyncEnums::NOT_MY_BIRTHDAY);
    client_to_server_response.set_error_message("Merry Unbirthday!");
    client_to_server_response.SerializeToString(buffer_out);
    store_birthday_sent_ = true;
    return HttpResponse::ForSuccessForTest();
  }
  EXPECT_TRUE(!store_birthday_sent_ || post.has_store_birthday() ||
              post.message_contents() ==
                  ClientToServerMessage::CLEAR_SERVER_DATA);
  store_birthday_sent_ = true;

  if (post.message_contents() == ClientToServerMessage::COMMIT) {
    if (!ProcessCommit(&post, &client_to_server_response)) {
      return HttpResponse::ForNetError(net::ERR_FAILED);
    }

  } else if (post.message_contents() == ClientToServerMessage::GET_UPDATES) {
    if (!ProcessGetUpdates(&post, &client_to_server_response)) {
      return HttpResponse::ForNetError(net::ERR_FAILED);
    }
  } else if (post.message_contents() ==
             ClientToServerMessage::CLEAR_SERVER_DATA) {
    if (!ProcessClearServerData(&post, &client_to_server_response)) {
      return HttpResponse::ForNetError(net::ERR_FAILED);
    }
  } else {
    EXPECT_TRUE(false) << "Unknown/unsupported ClientToServerMessage";
    return HttpResponse::ForNetError(net::ERR_FAILED);
  }

  {
    base::AutoLock lock(response_code_override_lock_);
    if (throttling_) {
      sync_pb::ClientToServerResponse_Error* response_error =
          client_to_server_response.mutable_error();
      response_error->set_error_type(SyncEnums::THROTTLED);
      for (DataType type : partial_failure_type_) {
        response_error->add_error_data_type_ids(
            GetSpecificsFieldNumberFromDataType(type));
      }
      throttling_ = false;
    }

    if (partial_failure_) {
      sync_pb::ClientToServerResponse_Error* response_error =
          client_to_server_response.mutable_error();
      response_error->set_error_type(SyncEnums::PARTIAL_FAILURE);
      for (DataType type : partial_failure_type_) {
        response_error->add_error_data_type_ids(
            GetSpecificsFieldNumberFromDataType(type));
      }
      partial_failure_ = false;
    }
  }

  client_to_server_response.SerializeToString(buffer_out);
  if (post.message_contents() == ClientToServerMessage::COMMIT &&
      !mid_commit_callback_.is_null()) {
    std::move(mid_commit_callback_).Run();
  }
  if (mid_commit_observer_) {
    mid_commit_observer_->Observe();
  }

  return HttpResponse::ForSuccessForTest();
}

sync_pb::GetUpdatesResponse* MockConnectionManager::GetUpdateResponse() {
  if (update_queue_.empty()) {
    NextUpdateBatch();
  }
  return &update_queue_.back();
}

void MockConnectionManager::AddDefaultBookmarkData(sync_pb::SyncEntity* entity,
                                                   bool is_folder) {
  entity->set_folder(is_folder);
  entity->mutable_specifics()->mutable_bookmark();
  if (!is_folder) {
    entity->mutable_specifics()->mutable_bookmark()->set_url(
        "http://google.com");
  }
}

void MockConnectionManager::SetGUClientCommand(
    std::unique_ptr<sync_pb::ClientCommand> command) {
  gu_client_command_ = std::move(command);
}

void MockConnectionManager::SetCommitClientCommand(
    std::unique_ptr<sync_pb::ClientCommand> command) {
  commit_client_command_ = std::move(command);
}

void MockConnectionManager::SetTransientErrorId(const std::string& id) {
  transient_error_ids_.push_back(id);
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdateSpecifics(
    const std::string& id,
    const std::string& parent_id,
    const string& name,
    int64_t version,
    int64_t sync_ts,
    bool is_dir,
    const sync_pb::EntitySpecifics& specifics) {
  sync_pb::SyncEntity* ent =
      AddUpdateMeta(id, parent_id, name, version, sync_ts);
  ent->mutable_specifics()->CopyFrom(specifics);
  ent->set_folder(is_dir);
  return ent;
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdateSpecifics(
    const std::string& id,
    const std::string& parent_id,
    const string& name,
    int64_t version,
    int64_t sync_ts,
    bool is_dir,
    const sync_pb::EntitySpecifics& specifics,
    const string& originator_cache_guid,
    const string& originator_client_item_id) {
  sync_pb::SyncEntity* ent = AddUpdateSpecifics(id, parent_id, name, version,
                                                sync_ts, is_dir, specifics);
  ent->set_originator_cache_guid(originator_cache_guid);
  ent->set_originator_client_item_id(originator_client_item_id);
  return ent;
}

sync_pb::SyncEntity* MockConnectionManager::SetNigori(
    const std::string& id,
    int64_t version,
    int64_t sync_ts,
    const sync_pb::EntitySpecifics& specifics) {
  sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries();
  ent->set_id_string(id);
  ent->set_parent_id_string("0");
  ent->set_server_defined_unique_tag(DataTypeToProtocolRootTag(NIGORI));
  ent->set_name("Nigori");
  ent->set_non_unique_name("Nigori");
  ent->set_version(version);
  ent->set_mtime(sync_ts);
  ent->set_ctime(1);
  ent->set_folder(false);
  ent->mutable_specifics()->CopyFrom(specifics);
  return ent;
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdatePref(
    const string& id,
    const string& parent_id,
    const string& client_tag,
    int64_t version,
    int64_t sync_ts) {
  sync_pb::SyncEntity* ent =
      AddUpdateMeta(id, parent_id, " ", version, sync_ts);

  ent->set_client_tag_hash(client_tag);

  sync_pb::EntitySpecifics specifics;
  AddDefaultFieldValue(PREFERENCES, &specifics);
  ent->mutable_specifics()->CopyFrom(specifics);

  return ent;
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdateFull(
    const string& id,
    const string& parent_id,
    const string& name,
    int64_t version,
    int64_t sync_ts,
    bool is_dir) {
  sync_pb::SyncEntity* ent =
      AddUpdateMeta(id, parent_id, name, version, sync_ts);
  AddDefaultBookmarkData(ent, is_dir);
  return ent;
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdateMeta(
    const string& id,
    const string& parent_id,
    const string& name,
    int64_t version,
    int64_t sync_ts) {
  sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries();
  ent->set_id_string(id);
  ent->set_parent_id_string(parent_id);
  ent->set_non_unique_name(name);
  ent->set_name(name);
  ent->set_version(version);
  ent->set_mtime(sync_ts);
  ent->set_ctime(1);

  // This isn't perfect, but it works well enough.  This is an update, which
  // means the ID is a server ID, which means it never changes.  By making
  // kCacheGuid also never change, we guarantee that the same item always has
  // the same originator_cache_guid and originator_client_item_id.
  //
  // Unfortunately, neither this class nor the tests that use it explicitly
  // track sync entitites, so supporting proper cache guids and client item IDs
  // would require major refactoring.  The ID used here ought to be the "c-"
  // style ID that was sent up on the commit.
  ent->set_originator_cache_guid(kCacheGuid);
  ent->set_originator_client_item_id(id);

  return ent;
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdateDirectory(
    const string& id,
    const string& parent_id,
    const string& name,
    int64_t version,
    int64_t sync_ts,
    const std::string& originator_cache_guid,
    const std::string& originator_client_item_id) {
  sync_pb::SyncEntity* ret =
      AddUpdateFull(id, parent_id, name, version, sync_ts, true);
  ret->set_originator_cache_guid(originator_cache_guid);
  ret->set_originator_client_item_id(originator_client_item_id);
  return ret;
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdateBookmark(
    const string& id,
    const string& parent_id,
    const string& name,
    int64_t version,
    int64_t sync_ts,
    const string& originator_cache_guid,
    const string& originator_client_item_id) {
  sync_pb::SyncEntity* ret =
      AddUpdateFull(id, parent_id, name, version, sync_ts, false);
  ret->set_originator_cache_guid(originator_cache_guid);
  ret->set_originator_client_item_id(originator_client_item_id);
  return ret;
}

sync_pb::SyncEntity* MockConnectionManager::AddUpdateFromLastCommit() {
  EXPECT_EQ(1, last_sent_commit().entries_size());
  EXPECT_EQ(1, last_commit_response().entryresponse_size());
  EXPECT_EQ(CommitResponse::SUCCESS,
            last_commit_response().entryresponse(0).response_type());

  if (last_sent_commit().entries(0).deleted()) {
    DataType type =
        GetDataTypeFromSpecifics(last_sent_commit().entries(0).specifics());
    AddUpdateTombstone(last_sent_commit().entries(0).id_string(), type);
  } else {
    sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries();
    ent->CopyFrom(last_sent_commit().entries(0));
    ent->clear_insert_after_item_id();
    ent->set_version(last_commit_response().entryresponse(0).version());
    ent->set_id_string(last_commit_response().entryresponse(0).id_string());

    // This is the same hack as in AddUpdateMeta.  See the comment in that
    // function for more information.
    ent->set_originator_cache_guid(kCacheGuid);
    ent->set_originator_client_item_id(
        last_commit_response().entryresponse(0).id_string());

    if (last_sent_commit().entries(0).has_unique_position()) {
      ent->mutable_unique_position()->CopyFrom(
          last_sent_commit().entries(0).unique_position());
    }

    // Tests don't currently care about the following:
    // parent_id_string, name, non_unique_name.
  }
  return GetMutableLastUpdate();
}

void MockConnectionManager::AddUpdateTombstone(const std::string& id,
                                               DataType type) {
  // Tombstones have only the ID set and fake values for the required fields.
  sync_pb::SyncEntity* ent = GetUpdateResponse()->add_entries();
  ent->set_id_string(id);
  ent->set_version(0);
  ent->set_name("");
  ent->set_deleted(true);

  // Make sure we can still extract the DataType from this tombstone.
  AddDefaultFieldValue(type, ent->mutable_specifics());
}

void MockConnectionManager::SetLastUpdateDeleted() {
  // Tombstones have only the ID set.  Wipe anything else.
  string id_string = GetMutableLastUpdate()->id_string();
  DataType type = GetDataTypeFromSpecifics(GetMutableLastUpdate()->specifics());
  GetUpdateResponse()->mutable_entries()->RemoveLast();
  AddUpdateTombstone(id_string, type);
}

void MockConnectionManager::SetLastUpdateOriginatorFields(
    const string& client_id,
    const string& entry_id) {
  GetMutableLastUpdate()->set_originator_cache_guid(client_id);
  GetMutableLastUpdate()->set_originator_client_item_id(entry_id);
}

void MockConnectionManager::SetLastUpdateServerTag(const string& tag) {
  GetMutableLastUpdate()->set_server_defined_unique_tag(tag);
}

void MockConnectionManager::SetLastUpdateClientTag(const string& tag) {
  GetMutableLastUpdate()->set_client_tag_hash(tag);
}

void MockConnectionManager::SetNewTimestamp(int ts) {
  next_token_ = base::StringPrintf("mock connection ts = %d", ts);
  ApplyToken();
}

sync_pb::DataTypeProgressMarker*
MockConnectionManager::AddUpdateProgressMarker() {
  return GetUpdateResponse()->add_new_progress_marker();
}

void MockConnectionManager::ApplyToken() {
  if (!update_queue_.empty()) {
    GetUpdateResponse()->clear_new_progress_marker();
    sync_pb::DataTypeProgressMarker* new_marker = AddUpdateProgressMarker();
    new_marker->set_data_type_id(-1);  // Invalid -- clients shouldn't see.
    new_marker->set_token(next_token_);
  }
}

void MockConnectionManager::SetChangesRemaining(int64_t timestamp) {
  GetUpdateResponse()->set_changes_remaining(timestamp);
}

bool MockConnectionManager::ProcessGetUpdates(
    sync_pb::ClientToServerMessage* csm,
    sync_pb::ClientToServerResponse* response) {
  if (!csm->has_get_updates()) {
    ADD_FAILURE();
    return false;
  }
  if (csm->message_contents() != ClientToServerMessage::GET_UPDATES) {
    ADD_FAILURE() << "Wrong contents, found " << csm->message_contents();
    return false;
  }
  const GetUpdatesMessage& gu = csm->get_updates();
  num_get_updates_requests_++;

  if (fail_non_periodic_get_updates_) {
    EXPECT_EQ(sync_pb::SyncEnums::PERIODIC, gu.get_updates_origin());
  }

  // Verify that the items we're about to send back to the client are of
  // the types requested by the client.  If this fails, it probably indicates
  // a test bug.
  EXPECT_TRUE(gu.fetch_folders());
  if (update_queue_.empty()) {
    GetUpdateResponse();
  }
  sync_pb::GetUpdatesResponse* updates = &update_queue_.front();
  for (int i = 0; i < updates->entries_size(); ++i) {
    if (!updates->entries(i).deleted()) {
      DataType entry_type =
          GetDataTypeFromSpecifics(updates->entries(i).specifics());
      EXPECT_TRUE(
          IsDataTypePresentInSpecifics(gu.from_progress_marker(), entry_type))
          << "Syncer did not request updates being provided by the test.";
    }
  }

  response->mutable_get_updates()->CopyFrom(*updates);

  // Set appropriate progress markers, overriding the value squirreled
  // away by ApplyToken().
  std::string token = response->get_updates().new_progress_marker(0).token();
  response->mutable_get_updates()->clear_new_progress_marker();
  for (int i = 0; i < gu.from_progress_marker_size(); ++i) {
    int data_type_id = gu.from_progress_marker(i).data_type_id();
    EXPECT_TRUE(expected_filter_.Has(
        GetDataTypeFromSpecificsFieldNumber(data_type_id)));
    sync_pb::DataTypeProgressMarker* new_marker =
        response->mutable_get_updates()->add_new_progress_marker();
    new_marker->set_data_type_id(data_type_id);
    new_marker->set_token(token);
  }

  // Fill the keystore key if requested.
  if (gu.need_encryption_key()) {
    response->mutable_get_updates()->add_encryption_keys(keystore_key_);
  }

  update_queue_.pop_front();

  if (gu_client_command_) {
    response->mutable_client_command()->CopyFrom(*gu_client_command_);
  }
  return true;
}

void MockConnectionManager::SetKeystoreKey(const std::string& key) {
  // Note: this is not a thread-safe set, ok for now.  NOT ok if tests
  // run the syncer on the background thread while this method is called.
  keystore_key_ = key;
}

bool MockConnectionManager::ShouldConflictThisCommit() {
  bool conflict = false;
  if (conflict_all_commits_) {
    conflict = true;
  } else if (conflict_n_commits_ > 0) {
    conflict = true;
    --conflict_n_commits_;
  }
  return conflict;
}

bool MockConnectionManager::ShouldTransientErrorThisId(const std::string& id) {
  return base::Contains(transient_error_ids_, id);
}

bool MockConnectionManager::ProcessCommit(
    sync_pb::ClientToServerMessage* csm,
    sync_pb::ClientToServerResponse* response_buffer) {
  if (!csm->has_commit()) {
    ADD_FAILURE();
    return false;
  }
  if (csm->message_contents() != ClientToServerMessage::COMMIT) {
    ADD_FAILURE() << "Wrong contents, found " << csm->message_contents();
    return false;
  }
  const CommitMessage& commit_message = csm->commit();
  CommitResponse* commit_response = response_buffer->mutable_commit();
  commit_messages_.push_back(std::make_unique<CommitMessage>());
  commit_messages_.back()->CopyFrom(commit_message);
  map<string, sync_pb::CommitResponse_EntryResponse*> response_map;
  for (int i = 0; i < commit_message.entries_size(); i++) {
    const sync_pb::SyncEntity& entry = commit_message.entries(i);
    string id_string = entry.id_string();
    if (!entry.has_id_string()) {
      const DataType data_type = GetDataTypeFromSpecifics(entry.specifics());
      // For commit-only types, fake having received a random ID, simply to
      // reuse the validation logic later below.
      if (CommitOnlyTypes().Has(data_type)) {
        id_string = base::Uuid::GenerateRandomV4().AsLowercaseString();
      } else {
        ADD_FAILURE() << " for specifics type "
                      << DataTypeToDebugString(data_type);
        return false;
      }
    }

    if (entry.name().length() >= 256ul) {
      ADD_FAILURE() << "Name probably too long. True server name dchecking not "
                       "implemented. Found length "
                    << entry.name().length();
      return false;
    }

    committed_ids_.push_back(id_string);

    if (response_map.end() == response_map.find(id_string)) {
      response_map[id_string] = commit_response->add_entryresponse();
    }
    sync_pb::CommitResponse_EntryResponse* er = response_map[id_string];
    if (ShouldConflictThisCommit()) {
      er->set_response_type(CommitResponse::CONFLICT);
      continue;
    }
    if (ShouldTransientErrorThisId(id_string)) {
      er->set_response_type(CommitResponse::TRANSIENT_ERROR);
      continue;
    }
    er->set_response_type(CommitResponse::SUCCESS);
    er->set_version(entry.version() + 1);
    if (entry.has_version() && 0 != entry.version()) {
      er->set_id_string(id_string);  // Allows verification.
    } else {
      string new_id = base::StringPrintf("mock_server:%d", next_new_id_++);
      er->set_id_string(new_id);
    }
  }
  commit_responses_.push_back(
      std::make_unique<CommitResponse>(*commit_response));

  if (commit_client_command_) {
    response_buffer->mutable_client_command()->CopyFrom(
        *commit_client_command_);
  }
  return true;
}

bool MockConnectionManager::ProcessClearServerData(
    sync_pb::ClientToServerMessage* csm,
    sync_pb::ClientToServerResponse* response) {
  if (!csm->has_clear_server_data()) {
    ADD_FAILURE();
    return false;
  }
  if (csm->message_contents() != ClientToServerMessage::CLEAR_SERVER_DATA) {
    ADD_FAILURE() << "Wrong contents, found " << csm->message_contents();
    return false;
  }
  response->mutable_clear_server_data();
  return true;
}

sync_pb::SyncEntity* MockConnectionManager::GetMutableLastUpdate() {
  sync_pb::GetUpdatesResponse* updates = GetUpdateResponse();
  EXPECT_GT(updates->entries_size(), 0);
  return updates->mutable_entries()->Mutable(updates->entries_size() - 1);
}

void MockConnectionManager::NextUpdateBatch() {
  update_queue_.push_back(sync_pb::GetUpdatesResponse::default_instance());
  SetChangesRemaining(0);
  ApplyToken();
}

const CommitMessage& MockConnectionManager::last_sent_commit() const {
  EXPECT_TRUE(!commit_messages_.empty());
  return *commit_messages_.back();
}

const CommitResponse& MockConnectionManager::last_commit_response() const {
  EXPECT_TRUE(!commit_responses_.empty());
  return *commit_responses_.back();
}

const sync_pb::ClientToServerMessage& MockConnectionManager::last_request()
    const {
  EXPECT_TRUE(!requests_.empty());
  return requests_.back();
}

const std::vector<sync_pb::ClientToServerMessage>&
MockConnectionManager::requests() const {
  return requests_;
}

bool MockConnectionManager::IsDataTypePresentInSpecifics(
    const google::protobuf::RepeatedPtrField<sync_pb::DataTypeProgressMarker>&
        filter,
    DataType value) {
  int data_type_id = GetSpecificsFieldNumberFromDataType(value);
  for (int i = 0; i < filter.size(); ++i) {
    if (filter.Get(i).data_type_id() == data_type_id) {
      return true;
    }
  }
  return false;
}

sync_pb::DataTypeProgressMarker const*
MockConnectionManager::GetProgressMarkerForType(
    const google::protobuf::RepeatedPtrField<sync_pb::DataTypeProgressMarker>&
        filter,
    DataType value) {
  int data_type_id = GetSpecificsFieldNumberFromDataType(value);
  for (int i = 0; i < filter.size(); ++i) {
    if (filter.Get(i).data_type_id() == data_type_id) {
      return &(filter.Get(i));
    }
  }
  return nullptr;
}

void MockConnectionManager::SetServerReachable() {
  server_reachable_ = true;
}

void MockConnectionManager::SetServerNotReachable() {
  server_reachable_ = false;
}

void MockConnectionManager::UpdateConnectionStatus() {
  SetServerResponse(server_reachable_
                        ? HttpResponse::ForSuccessForTest()
                        : HttpResponse::ForNetError(net::ERR_FAILED));
}

}  // namespace syncer