| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "sync/sessions/sync_session.h" | 5 #include "components/sync/sessions_impl/sync_session.h" |
| 6 #include "sync/test/engine/test_id_factory.h" | 6 #include "components/sync/test/engine/test_id_factory.h" |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 namespace syncer { | 9 namespace syncer { |
| 10 namespace sessions { | 10 namespace sessions { |
| 11 | 11 |
| 12 class StatusControllerTest : public testing::Test { }; | 12 class StatusControllerTest : public testing::Test {}; |
| 13 | 13 |
| 14 // This test is useful, as simple as it sounds, due to the copy-paste prone | 14 // This test is useful, as simple as it sounds, due to the copy-paste prone |
| 15 // nature of status_controller.cc (we have had bugs in the past where a set_foo | 15 // nature of status_controller.cc (we have had bugs in the past where a set_foo |
| 16 // method was actually setting |bar_| instead!). | 16 // method was actually setting |bar_| instead!). |
| 17 TEST_F(StatusControllerTest, ReadYourWrites) { | 17 TEST_F(StatusControllerTest, ReadYourWrites) { |
| 18 StatusController status; | 18 StatusController status; |
| 19 | 19 |
| 20 status.set_last_download_updates_result(SYNCER_OK); | 20 status.set_last_download_updates_result(SYNCER_OK); |
| 21 EXPECT_EQ(SYNCER_OK, | 21 EXPECT_EQ(SYNCER_OK, |
| 22 status.model_neutral_state().last_download_updates_result); | 22 status.model_neutral_state().last_download_updates_result); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 35 EXPECT_EQ(0, status.TotalNumConflictingItems()); | 35 EXPECT_EQ(0, status.TotalNumConflictingItems()); |
| 36 | 36 |
| 37 status.increment_num_server_conflicts(); | 37 status.increment_num_server_conflicts(); |
| 38 status.increment_num_hierarchy_conflicts_by(3); | 38 status.increment_num_hierarchy_conflicts_by(3); |
| 39 status.increment_num_encryption_conflicts_by(2); | 39 status.increment_num_encryption_conflicts_by(2); |
| 40 EXPECT_EQ(6, status.TotalNumConflictingItems()); | 40 EXPECT_EQ(6, status.TotalNumConflictingItems()); |
| 41 } | 41 } |
| 42 | 42 |
| 43 } // namespace sessions | 43 } // namespace sessions |
| 44 } // namespace syncer | 44 } // namespace syncer |
| OLD | NEW |