OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/installer/util/google_update_settings.h" | 5 #include "chrome/installer/util/google_update_settings.h" |
6 #include "testing/gtest/include/gtest/gtest.h" | 6 #include "testing/gtest/include/gtest/gtest.h" |
7 #include "testing/platform_test.h" | 7 #include "testing/platform_test.h" |
8 | 8 |
9 class GoogleUpdateTest : public PlatformTest { | 9 class GoogleUpdateTest : public PlatformTest { |
10 }; | 10 }; |
11 | 11 |
12 TEST_F(GoogleUpdateTest, StatsConstent) { | 12 // bug: http://crbug.com/70092 |
| 13 TEST_F(GoogleUpdateTest, DISABLED_StatsConstent) { |
13 // Stats are off by default. | 14 // Stats are off by default. |
14 EXPECT_FALSE(GoogleUpdateSettings::GetCollectStatsConsent()); | 15 EXPECT_FALSE(GoogleUpdateSettings::GetCollectStatsConsent()); |
15 // Stats reporting is ON. | 16 // Stats reporting is ON. |
16 EXPECT_TRUE(GoogleUpdateSettings::SetCollectStatsConsent(true)); | 17 EXPECT_TRUE(GoogleUpdateSettings::SetCollectStatsConsent(true)); |
17 EXPECT_TRUE(GoogleUpdateSettings::GetCollectStatsConsent()); | 18 EXPECT_TRUE(GoogleUpdateSettings::GetCollectStatsConsent()); |
18 // Stats reporting is OFF. | 19 // Stats reporting is OFF. |
19 EXPECT_TRUE(GoogleUpdateSettings::SetCollectStatsConsent(false)); | 20 EXPECT_TRUE(GoogleUpdateSettings::SetCollectStatsConsent(false)); |
20 EXPECT_FALSE(GoogleUpdateSettings::GetCollectStatsConsent()); | 21 EXPECT_FALSE(GoogleUpdateSettings::GetCollectStatsConsent()); |
21 } | 22 } |
22 | 23 |
23 #if defined(OS_WIN) | 24 #if defined(OS_WIN) |
24 | 25 |
25 TEST_F(GoogleUpdateTest, LastRunTime) { | 26 TEST_F(GoogleUpdateTest, LastRunTime) { |
26 // Querying the value that does not exists should fail. | 27 // Querying the value that does not exists should fail. |
27 EXPECT_TRUE(GoogleUpdateSettings::RemoveLastRunTime()); | 28 EXPECT_TRUE(GoogleUpdateSettings::RemoveLastRunTime()); |
28 EXPECT_EQ(-1, GoogleUpdateSettings::GetLastRunTime()); | 29 EXPECT_EQ(-1, GoogleUpdateSettings::GetLastRunTime()); |
29 // Setting and querying the last update time in fast sequence | 30 // Setting and querying the last update time in fast sequence |
30 // should give 0 days. | 31 // should give 0 days. |
31 EXPECT_TRUE(GoogleUpdateSettings::SetLastRunTime()); | 32 EXPECT_TRUE(GoogleUpdateSettings::SetLastRunTime()); |
32 EXPECT_EQ(0, GoogleUpdateSettings::GetLastRunTime()); | 33 EXPECT_EQ(0, GoogleUpdateSettings::GetLastRunTime()); |
33 } | 34 } |
34 | 35 |
35 #endif // defined(OS_WIN) | 36 #endif // defined(OS_WIN) |
OLD | NEW |