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

Side by Side Diff: chrome/browser/google/google_update_settings_unittest.cc

Issue 6354007: Disable failing test temporarily.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698