| 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 "sync/sessions/sync_session.h" |
| 6 #include "sync/test/engine/test_id_factory.h" | 6 #include "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 status.set_num_server_changes_remaining(13); | |
| 20 EXPECT_EQ(13, status.num_server_changes_remaining()); | |
| 21 | 19 |
| 22 status.set_last_download_updates_result(SYNCER_OK); | 20 status.set_last_download_updates_result(SYNCER_OK); |
| 23 EXPECT_EQ(SYNCER_OK, | 21 EXPECT_EQ(SYNCER_OK, |
| 24 status.model_neutral_state().last_download_updates_result); | 22 status.model_neutral_state().last_download_updates_result); |
| 25 | 23 |
| 26 status.set_commit_result(SYNC_AUTH_ERROR); | 24 status.set_commit_result(SYNC_AUTH_ERROR); |
| 27 EXPECT_EQ(SYNC_AUTH_ERROR, status.model_neutral_state().commit_result); | 25 EXPECT_EQ(SYNC_AUTH_ERROR, status.model_neutral_state().commit_result); |
| 28 | 26 |
| 29 for (int i = 0; i < 14; i++) | 27 for (int i = 0; i < 14; i++) |
| 30 status.increment_num_successful_commits(); | 28 status.increment_num_successful_commits(); |
| 31 EXPECT_EQ(14, status.model_neutral_state().num_successful_commits); | 29 EXPECT_EQ(14, status.model_neutral_state().num_successful_commits); |
| 32 } | 30 } |
| 33 | 31 |
| 34 // Test TotalNumConflictingItems | 32 // Test TotalNumConflictingItems |
| 35 TEST_F(StatusControllerTest, TotalNumConflictingItems) { | 33 TEST_F(StatusControllerTest, TotalNumConflictingItems) { |
| 36 StatusController status; | 34 StatusController status; |
| 37 EXPECT_EQ(0, status.TotalNumConflictingItems()); | 35 EXPECT_EQ(0, status.TotalNumConflictingItems()); |
| 38 | 36 |
| 39 status.increment_num_server_conflicts(); | 37 status.increment_num_server_conflicts(); |
| 40 status.increment_num_hierarchy_conflicts_by(3); | 38 status.increment_num_hierarchy_conflicts_by(3); |
| 41 status.increment_num_encryption_conflicts_by(2); | 39 status.increment_num_encryption_conflicts_by(2); |
| 42 EXPECT_EQ(6, status.TotalNumConflictingItems()); | 40 EXPECT_EQ(6, status.TotalNumConflictingItems()); |
| 43 } | 41 } |
| 44 | 42 |
| 45 } // namespace sessions | 43 } // namespace sessions |
| 46 } // namespace syncer | 44 } // namespace syncer |
| OLD | NEW |