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

Unified Diff: components/sync/api/entity_data_unittest.cc

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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 | « components/sync/api/entity_data.cc ('k') | components/sync/api/fake_model_type_change_processor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/api/entity_data_unittest.cc
diff --git a/components/sync/api/entity_data_unittest.cc b/components/sync/api/entity_data_unittest.cc
deleted file mode 100644
index 5f1592132eb9f2a66634a9a5b626cc4783b31cfe..0000000000000000000000000000000000000000
--- a/components/sync/api/entity_data_unittest.cc
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/sync/api/entity_data.h"
-
-#include "components/sync/base/model_type.h"
-#include "components/sync/base/unique_position.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace syncer {
-
-class EntityDataTest : public testing::Test {
- protected:
- EntityDataTest() {}
- ~EntityDataTest() override {}
-};
-
-TEST_F(EntityDataTest, IsDeleted) {
- EntityData data;
- EXPECT_TRUE(data.is_deleted());
-
- AddDefaultFieldValue(BOOKMARKS, &data.specifics);
- EXPECT_FALSE(data.is_deleted());
-}
-
-TEST_F(EntityDataTest, Swap) {
- EntityData data;
- AddDefaultFieldValue(BOOKMARKS, &data.specifics);
- data.id = "id";
- data.client_tag_hash = "client_tag_hash";
- data.non_unique_name = "non_unique_name";
- data.creation_time = base::Time::FromTimeT(10);
- data.modification_time = base::Time::FromTimeT(20);
- data.parent_id = "parent_id";
-
- UniquePosition unique_position =
- UniquePosition::InitialPosition(UniquePosition::RandomSuffix());
-
- unique_position.ToProto(&data.unique_position);
-
- // Remember addresses of some data within EntitySpecific and UniquePosition
- // to make sure that the underlying data isn't copied.
- const sync_pb::BookmarkSpecifics* bookmark_specifics =
- &data.specifics.bookmark();
- const std::string* unique_position_value = &data.unique_position.value();
-
- EntityDataPtr ptr(data.PassToPtr());
-
- // Compare addresses of the data wrapped by EntityDataPtr to make sure that
- // the underlying objects are exactly the same.
- EXPECT_EQ(bookmark_specifics, &ptr->specifics.bookmark());
- EXPECT_EQ(unique_position_value, &ptr->unique_position.value());
-
- // Compare other fields.
- EXPECT_EQ("id", ptr->id);
- EXPECT_EQ("client_tag_hash", ptr->client_tag_hash);
- EXPECT_EQ("non_unique_name", ptr->non_unique_name);
- EXPECT_EQ("parent_id", ptr->parent_id);
- EXPECT_EQ(base::Time::FromTimeT(10), ptr->creation_time);
- EXPECT_EQ(base::Time::FromTimeT(20), ptr->modification_time);
-}
-
-} // namespace syncer
« no previous file with comments | « components/sync/api/entity_data.cc ('k') | components/sync/api/fake_model_type_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698