| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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. | |
| 4 | |
| 5 #include "sync/api/entity_data.h" | |
| 6 | |
| 7 #include "sync/internal_api/public/base/model_type.h" | |
| 8 #include "sync/internal_api/public/base/unique_position.h" | |
| 9 #include "testing/gtest/include/gtest/gtest.h" | |
| 10 | |
| 11 namespace syncer_v2 { | |
| 12 | |
| 13 class EntityDataTest : public testing::Test { | |
| 14 protected: | |
| 15 EntityDataTest() {} | |
| 16 ~EntityDataTest() override {} | |
| 17 }; | |
| 18 | |
| 19 TEST_F(EntityDataTest, IsDeleted) { | |
| 20 EntityData data; | |
| 21 EXPECT_TRUE(data.is_deleted()); | |
| 22 | |
| 23 syncer::AddDefaultFieldValue(syncer::BOOKMARKS, &data.specifics); | |
| 24 EXPECT_FALSE(data.is_deleted()); | |
| 25 } | |
| 26 | |
| 27 TEST_F(EntityDataTest, Swap) { | |
| 28 EntityData data; | |
| 29 syncer::AddDefaultFieldValue(syncer::BOOKMARKS, &data.specifics); | |
| 30 data.id = "id"; | |
| 31 data.client_tag_hash = "client_tag_hash"; | |
| 32 data.non_unique_name = "non_unique_name"; | |
| 33 data.creation_time = base::Time::FromTimeT(10); | |
| 34 data.modification_time = base::Time::FromTimeT(20); | |
| 35 data.parent_id = "parent_id"; | |
| 36 | |
| 37 using syncer::UniquePosition; | |
| 38 UniquePosition unique_position = | |
| 39 UniquePosition::InitialPosition(UniquePosition::RandomSuffix()); | |
| 40 | |
| 41 unique_position.ToProto(&data.unique_position); | |
| 42 | |
| 43 // Remember addresses of some data within EntitySpecific and UniquePosition | |
| 44 // to make sure that the underlying data isn't copied. | |
| 45 const sync_pb::BookmarkSpecifics* bookmark_specifics = | |
| 46 &data.specifics.bookmark(); | |
| 47 const std::string* unique_position_value = &data.unique_position.value(); | |
| 48 | |
| 49 EntityDataPtr ptr(data.PassToPtr()); | |
| 50 | |
| 51 // Compare addresses of the data wrapped by EntityDataPtr to make sure that | |
| 52 // the underlying objects are exactly the same. | |
| 53 EXPECT_EQ(bookmark_specifics, &ptr->specifics.bookmark()); | |
| 54 EXPECT_EQ(unique_position_value, &ptr->unique_position.value()); | |
| 55 | |
| 56 // Compare other fields. | |
| 57 EXPECT_EQ("id", ptr->id); | |
| 58 EXPECT_EQ("client_tag_hash", ptr->client_tag_hash); | |
| 59 EXPECT_EQ("non_unique_name", ptr->non_unique_name); | |
| 60 EXPECT_EQ("parent_id", ptr->parent_id); | |
| 61 EXPECT_EQ(base::Time::FromTimeT(10), ptr->creation_time); | |
| 62 EXPECT_EQ(base::Time::FromTimeT(20), ptr->modification_time); | |
| 63 } | |
| 64 | |
| 65 } // namespace syncer_v2 | |
| OLD | NEW |