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

Side by Side Diff: sync/internal_api/sync_manager_impl_unittest.cc

Issue 1842653006: Update //third_party/protobuf to version 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update sync unittest and README.chromium Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Unit tests for the SyncApi. Note that a lot of the underlying 5 // Unit tests for the SyncApi. Note that a lot of the underlying
6 // functionality is provided by the Syncable layer, which has its own 6 // functionality is provided by the Syncable layer, which has its own
7 // unit tests. We'll test SyncApi specific things in this harness. 7 // unit tests. We'll test SyncApi specific things in this harness.
8 8
9 #include "sync/internal_api/sync_manager_impl.h" 9 #include "sync/internal_api/sync_manager_impl.h"
10 10
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 #include "sync/test/engine/fake_model_worker.h" 68 #include "sync/test/engine/fake_model_worker.h"
69 #include "sync/test/engine/fake_sync_scheduler.h" 69 #include "sync/test/engine/fake_sync_scheduler.h"
70 #include "sync/test/engine/test_id_factory.h" 70 #include "sync/test/engine/test_id_factory.h"
71 #include "sync/test/fake_encryptor.h" 71 #include "sync/test/fake_encryptor.h"
72 #include "sync/util/cryptographer.h" 72 #include "sync/util/cryptographer.h"
73 #include "sync/util/extensions_activity.h" 73 #include "sync/util/extensions_activity.h"
74 #include "sync/util/mock_unrecoverable_error_handler.h" 74 #include "sync/util/mock_unrecoverable_error_handler.h"
75 #include "sync/util/time.h" 75 #include "sync/util/time.h"
76 #include "testing/gmock/include/gmock/gmock.h" 76 #include "testing/gmock/include/gmock/gmock.h"
77 #include "testing/gtest/include/gtest/gtest.h" 77 #include "testing/gtest/include/gtest/gtest.h"
78 #include "third_party/protobuf/src/google/protobuf/io/coded_stream.h"
79 #include "third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite .h"
78 #include "url/gurl.h" 80 #include "url/gurl.h"
79 81
80 using base::ExpectDictStringValue; 82 using base::ExpectDictStringValue;
81 using testing::_; 83 using testing::_;
82 using testing::DoAll; 84 using testing::DoAll;
83 using testing::InSequence; 85 using testing::InSequence;
84 using testing::Return; 86 using testing::Return;
85 using testing::SaveArg; 87 using testing::SaveArg;
86 using testing::StrictMock; 88 using testing::StrictMock;
87 89
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 625
624 TEST_F(SyncApiTest, BaseNodeSetSpecificsPreservesUnknownFields) { 626 TEST_F(SyncApiTest, BaseNodeSetSpecificsPreservesUnknownFields) {
625 int64_t child_id = MakeNodeWithRoot(user_share(), BOOKMARKS, "testtag"); 627 int64_t child_id = MakeNodeWithRoot(user_share(), BOOKMARKS, "testtag");
626 WriteTransaction trans(FROM_HERE, user_share()); 628 WriteTransaction trans(FROM_HERE, user_share());
627 WriteNode node(&trans); 629 WriteNode node(&trans);
628 EXPECT_EQ(BaseNode::INIT_OK, node.InitByIdLookup(child_id)); 630 EXPECT_EQ(BaseNode::INIT_OK, node.InitByIdLookup(child_id));
629 EXPECT_TRUE(node.GetEntitySpecifics().unknown_fields().empty()); 631 EXPECT_TRUE(node.GetEntitySpecifics().unknown_fields().empty());
630 632
631 sync_pb::EntitySpecifics entity_specifics; 633 sync_pb::EntitySpecifics entity_specifics;
632 entity_specifics.mutable_bookmark()->set_url("http://www.google.com"); 634 entity_specifics.mutable_bookmark()->set_url("http://www.google.com");
633 entity_specifics.mutable_unknown_fields()->AddFixed32(5, 100); 635 std::string unknown_fields;
636 {
637 ::google::protobuf::io::StringOutputStream unknown_fields_stream(
638 &unknown_fields);
639 ::google::protobuf::io::CodedOutputStream output(&unknown_fields_stream);
640 const int tag = 5;
641 const int value = 100;
642 output.WriteTag(tag);
643 output.WriteLittleEndian32(value);
644 }
645 *entity_specifics.mutable_unknown_fields() = unknown_fields;
634 node.SetEntitySpecifics(entity_specifics); 646 node.SetEntitySpecifics(entity_specifics);
635 EXPECT_FALSE(node.GetEntitySpecifics().unknown_fields().empty()); 647 EXPECT_FALSE(node.GetEntitySpecifics().unknown_fields().empty());
648 EXPECT_EQ(unknown_fields, node.GetEntitySpecifics().unknown_fields());
636 649
637 entity_specifics.mutable_unknown_fields()->Clear(); 650 entity_specifics.mutable_unknown_fields()->clear();
638 node.SetEntitySpecifics(entity_specifics); 651 node.SetEntitySpecifics(entity_specifics);
639 EXPECT_FALSE(node.GetEntitySpecifics().unknown_fields().empty()); 652 EXPECT_FALSE(node.GetEntitySpecifics().unknown_fields().empty());
653 EXPECT_EQ(unknown_fields, node.GetEntitySpecifics().unknown_fields());
640 } 654 }
641 655
642 TEST_F(SyncApiTest, EmptyTags) { 656 TEST_F(SyncApiTest, EmptyTags) {
643 WriteTransaction trans(FROM_HERE, user_share()); 657 WriteTransaction trans(FROM_HERE, user_share());
644 ReadNode root_node(&trans); 658 ReadNode root_node(&trans);
645 root_node.InitByRootLookup(); 659 root_node.InitByRootLookup();
646 WriteNode node(&trans); 660 WriteNode node(&trans);
647 std::string empty_tag; 661 std::string empty_tag;
648 WriteNode::InitUniqueByCreationResult result = 662 WriteNode::InitUniqueByCreationResult result =
649 node.InitUniqueByCreation(TYPED_URLS, root_node, empty_tag); 663 node.InitUniqueByCreation(TYPED_URLS, root_node, empty_tag);
(...skipping 2709 matching lines...) Expand 10 before | Expand all | Expand 10 after
3359 // SyncManagerInitInvalidStorageTest::GetFactory will return 3373 // SyncManagerInitInvalidStorageTest::GetFactory will return
3360 // DirectoryBackingStore that ensures that SyncManagerImpl::OpenDirectory fails. 3374 // DirectoryBackingStore that ensures that SyncManagerImpl::OpenDirectory fails.
3361 // SyncManagerImpl initialization is done in SyncManagerTest::SetUp. This test's 3375 // SyncManagerImpl initialization is done in SyncManagerTest::SetUp. This test's
3362 // task is to ensure that SyncManagerImpl reported initialization failure in 3376 // task is to ensure that SyncManagerImpl reported initialization failure in
3363 // OnInitializationComplete callback. 3377 // OnInitializationComplete callback.
3364 TEST_F(SyncManagerInitInvalidStorageTest, FailToOpenDatabase) { 3378 TEST_F(SyncManagerInitInvalidStorageTest, FailToOpenDatabase) {
3365 EXPECT_FALSE(initialization_succeeded_); 3379 EXPECT_FALSE(initialization_succeeded_);
3366 } 3380 }
3367 3381
3368 } // namespace syncer 3382 } // namespace syncer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698