Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3066)

Unified Diff: chrome/browser/sync/sessions/sync_session_unittest.cc

Issue 6104003: sync: use progress markers instead of timestamps during GetUpdates (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tim's fixes Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/sessions/sync_session.cc ('k') | chrome/browser/sync/sync_ui_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/sessions/sync_session_unittest.cc
diff --git a/chrome/browser/sync/sessions/sync_session_unittest.cc b/chrome/browser/sync/sessions/sync_session_unittest.cc
index 32156bd0b83d2e7b9bd6792c7af8d0f525c84a42..9bb1e3be80ef7427afdd08245b671210f00444a8 100644
--- a/chrome/browser/sync/sessions/sync_session_unittest.cc
+++ b/chrome/browser/sync/sessions/sync_session_unittest.cc
@@ -12,7 +12,6 @@
#include "chrome/test/sync/engine/test_directory_setter_upper.h"
#include "testing/gtest/include/gtest/gtest.h"
-using syncable::MultiTypeTimeStamp;
using syncable::WriteTransaction;
namespace browser_sync {
@@ -30,7 +29,7 @@ class SyncSessionTest : public testing::Test,
SyncSession* MakeSession() {
return new SyncSession(context_.get(), this, SyncSourceInfo(), routes_,
std::vector<ModelSafeWorker*>());
- }
+ }
virtual void SetUp() {
context_.reset(new SyncSessionContext(NULL, NULL, this,
@@ -77,18 +76,16 @@ class SyncSessionTest : public testing::Test,
FAIL() << msg;
}
- MultiTypeTimeStamp ParamsMeaningAllEnabledTypes() {
- MultiTypeTimeStamp request_params;
- request_params.timestamp = 2000;
- request_params.data_types[syncable::BOOKMARKS] = true;
- request_params.data_types[syncable::AUTOFILL] = true;
+ syncable::ModelTypeBitSet ParamsMeaningAllEnabledTypes() {
+ syncable::ModelTypeBitSet request_params;
+ request_params[syncable::BOOKMARKS] = true;
+ request_params[syncable::AUTOFILL] = true;
return request_params;
}
- MultiTypeTimeStamp ParamsMeaningJustOneEnabledType() {
- MultiTypeTimeStamp request_params;
- request_params.timestamp = 5000;
- request_params.data_types[syncable::AUTOFILL] = true;
+ syncable::ModelTypeBitSet ParamsMeaningJustOneEnabledType() {
+ syncable::ModelTypeBitSet request_params;
+ request_params[syncable::AUTOFILL] = true;
return request_params;
}
@@ -158,7 +155,7 @@ TEST_F(SyncSessionTest, MoreToSyncIfConflictSetsBuilt) {
}
TEST_F(SyncSessionTest, MoreToDownloadIfDownloadFailed) {
- status()->set_updates_request_parameters(ParamsMeaningAllEnabledTypes());
+ status()->set_updates_request_types(ParamsMeaningAllEnabledTypes());
// When DownloadUpdatesCommand fails, these should be false.
EXPECT_FALSE(status()->ServerSaysNothingMoreToDownload());
@@ -169,12 +166,13 @@ TEST_F(SyncSessionTest, MoreToDownloadIfDownloadFailed) {
EXPECT_FALSE(session_->HasMoreToSync());
}
-TEST_F(SyncSessionTest, MoreToDownloadIfGotTimestamp) {
- status()->set_updates_request_parameters(ParamsMeaningAllEnabledTypes());
+TEST_F(SyncSessionTest, MoreToDownloadIfGotChangesRemaining) {
+ status()->set_updates_request_types(ParamsMeaningAllEnabledTypes());
- // When the server returns a timestamp, that means there's more to download.
+ // When the server returns changes_remaining, that means there's
+ // more to download.
status()->mutable_updates_response()->mutable_get_updates()
- ->set_new_timestamp(1000000L);
+ ->set_changes_remaining(1000L);
EXPECT_FALSE(status()->ServerSaysNothingMoreToDownload());
EXPECT_TRUE(status()->download_updates_succeeded());
@@ -183,12 +181,12 @@ TEST_F(SyncSessionTest, MoreToDownloadIfGotTimestamp) {
EXPECT_FALSE(session_->HasMoreToSync());
}
-TEST_F(SyncSessionTest, MoreToDownloadIfGotNoTimestamp) {
- status()->set_updates_request_parameters(ParamsMeaningAllEnabledTypes());
+TEST_F(SyncSessionTest, MoreToDownloadIfGotNoChangesRemaining) {
+ status()->set_updates_request_types(ParamsMeaningAllEnabledTypes());
// When the server returns a timestamp, that means we're up to date.
status()->mutable_updates_response()->mutable_get_updates()
- ->clear_new_timestamp();
+ ->set_changes_remaining(0);
EXPECT_TRUE(status()->ServerSaysNothingMoreToDownload());
EXPECT_TRUE(status()->download_updates_succeeded());
@@ -197,15 +195,16 @@ TEST_F(SyncSessionTest, MoreToDownloadIfGotNoTimestamp) {
EXPECT_FALSE(session_->HasMoreToSync());
}
-TEST_F(SyncSessionTest, MoreToDownloadIfGotNoTimestampForSubset) {
- status()->set_updates_request_parameters(ParamsMeaningJustOneEnabledType());
+TEST_F(SyncSessionTest, MoreToDownloadIfGotNoChangesRemainingForSubset) {
+ status()->set_updates_request_types(ParamsMeaningJustOneEnabledType());
// When the server returns a timestamp, that means we're up to date for that
// type. But there may still be more to download if there are other
// datatypes that we didn't request on this go-round.
status()->mutable_updates_response()->mutable_get_updates()
- ->clear_new_timestamp();
- EXPECT_FALSE(status()->ServerSaysNothingMoreToDownload());
+ ->set_changes_remaining(0);
+
+ EXPECT_TRUE(status()->ServerSaysNothingMoreToDownload());
EXPECT_TRUE(status()->download_updates_succeeded());
// Download updates has its own loop in the syncer; it shouldn't factor
@@ -213,13 +212,13 @@ TEST_F(SyncSessionTest, MoreToDownloadIfGotNoTimestampForSubset) {
EXPECT_FALSE(session_->HasMoreToSync());
}
-TEST_F(SyncSessionTest, MoreToDownloadIfGotTimestampAndEntries) {
- status()->set_updates_request_parameters(ParamsMeaningAllEnabledTypes());
+TEST_F(SyncSessionTest, MoreToDownloadIfGotChangesRemainingAndEntries) {
+ status()->set_updates_request_types(ParamsMeaningAllEnabledTypes());
// The actual entry count should not factor into the HasMoreToSync
// determination.
status()->mutable_updates_response()->mutable_get_updates()->add_entries();
status()->mutable_updates_response()->mutable_get_updates()
- ->set_new_timestamp(1000000L);;
+ ->set_changes_remaining(1000000L);;
EXPECT_FALSE(status()->ServerSaysNothingMoreToDownload());
EXPECT_TRUE(status()->download_updates_succeeded());
@@ -228,6 +227,20 @@ TEST_F(SyncSessionTest, MoreToDownloadIfGotTimestampAndEntries) {
EXPECT_FALSE(session_->HasMoreToSync());
}
+TEST_F(SyncSessionTest, MoreToDownloadIfGotNoChangesRemainingAndEntries) {
+ status()->set_updates_request_types(ParamsMeaningAllEnabledTypes());
+ // The actual entry count should not factor into the HasMoreToSync
+ // determination.
+ status()->mutable_updates_response()->mutable_get_updates()->add_entries();
+ status()->mutable_updates_response()->mutable_get_updates()
+ ->set_changes_remaining(0);
+ EXPECT_TRUE(status()->ServerSaysNothingMoreToDownload());
+ EXPECT_TRUE(status()->download_updates_succeeded());
+
+ // Download updates has its own loop in the syncer; it shouldn't factor
+ // into HasMoreToSync.
+ EXPECT_FALSE(session_->HasMoreToSync());
+}
TEST_F(SyncSessionTest, MoreToSyncIfConflictsResolved) {
// Conflict resolution happens after get updates and commit,
« no previous file with comments | « chrome/browser/sync/sessions/sync_session.cc ('k') | chrome/browser/sync/sync_ui_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698