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 "components/sync/api/entity_data.h" | |
6 | |
7 #include "components/sync/base/model_type.h" | |
8 #include "components/sync/base/unique_position.h" | |
9 #include "testing/gtest/include/gtest/gtest.h" | |
10 | |
11 namespace syncer { | |
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 AddDefaultFieldValue(BOOKMARKS, &data.specifics); | |
24 EXPECT_FALSE(data.is_deleted()); | |
25 } | |
26 | |
27 TEST_F(EntityDataTest, Swap) { | |
28 EntityData data; | |
29 AddDefaultFieldValue(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 UniquePosition unique_position = | |
38 UniquePosition::InitialPosition(UniquePosition::RandomSuffix()); | |
39 | |
40 unique_position.ToProto(&data.unique_position); | |
41 | |
42 // Remember addresses of some data within EntitySpecific and UniquePosition | |
43 // to make sure that the underlying data isn't copied. | |
44 const sync_pb::BookmarkSpecifics* bookmark_specifics = | |
45 &data.specifics.bookmark(); | |
46 const std::string* unique_position_value = &data.unique_position.value(); | |
47 | |
48 EntityDataPtr ptr(data.PassToPtr()); | |
49 | |
50 // Compare addresses of the data wrapped by EntityDataPtr to make sure that | |
51 // the underlying objects are exactly the same. | |
52 EXPECT_EQ(bookmark_specifics, &ptr->specifics.bookmark()); | |
53 EXPECT_EQ(unique_position_value, &ptr->unique_position.value()); | |
54 | |
55 // Compare other fields. | |
56 EXPECT_EQ("id", ptr->id); | |
57 EXPECT_EQ("client_tag_hash", ptr->client_tag_hash); | |
58 EXPECT_EQ("non_unique_name", ptr->non_unique_name); | |
59 EXPECT_EQ("parent_id", ptr->parent_id); | |
60 EXPECT_EQ(base::Time::FromTimeT(10), ptr->creation_time); | |
61 EXPECT_EQ(base::Time::FromTimeT(20), ptr->modification_time); | |
62 } | |
63 | |
64 } // namespace syncer | |
OLD | NEW |