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

Side by Side Diff: chrome/browser/metrics/metrics_service_uitest.cc

Issue 63011: Monster FilePath patch! (Closed)
Patch Set: sync with trunk Created 11 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
« no previous file with comments | « chrome/browser/iframe_uitest.cc ('k') | chrome/browser/renderer_host/render_view_host.cc » ('j') | 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // Tests the MetricsService stat recording to make sure that the numbers are 5 // Tests the MetricsService stat recording to make sure that the numbers are
6 // what we expect. 6 // what we expect.
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/file_path.h"
10 #include "base/file_util.h" 11 #include "base/file_util.h"
11 #include "base/path_service.h" 12 #include "base/path_service.h"
12 #include "base/platform_thread.h" 13 #include "base/platform_thread.h"
13 #include "base/process_util.h" 14 #include "base/process_util.h"
14 #include "chrome/app/chrome_dll_resource.h" 15 #include "chrome/app/chrome_dll_resource.h"
15 #include "chrome/common/chrome_constants.h" 16 #include "chrome/common/chrome_constants.h"
16 #include "chrome/common/chrome_paths.h" 17 #include "chrome/common/chrome_paths.h"
17 #include "chrome/common/pref_names.h" 18 #include "chrome/common/pref_names.h"
18 #include "chrome/common/pref_service.h" 19 #include "chrome/common/pref_service.h"
19 #include "chrome/test/automation/tab_proxy.h" 20 #include "chrome/test/automation/tab_proxy.h"
20 #include "chrome/test/automation/browser_proxy.h" 21 #include "chrome/test/automation/browser_proxy.h"
21 #include "chrome/test/ui/ui_test.h" 22 #include "chrome/test/ui/ui_test.h"
22 #include "net/base/net_util.h" 23 #include "net/base/net_util.h"
23 24
24 class MetricsServiceTest : public UITest { 25 class MetricsServiceTest : public UITest {
25 public: 26 public:
26 MetricsServiceTest() : UITest(), window_(NULL) { 27 MetricsServiceTest() : UITest(), window_(NULL) {
27 // We need to show the window so web content type tabs load. 28 // We need to show the window so web content type tabs load.
28 show_window_ = true; 29 show_window_ = true;
29 } 30 }
30 31
31 // Open a few tabs of random content 32 // Open a few tabs of random content
32 void OpenTabs() { 33 void OpenTabs() {
33 window_ = automation()->GetBrowserWindow(0); 34 window_ = automation()->GetBrowserWindow(0);
34 ASSERT_TRUE(window_); 35 ASSERT_TRUE(window_);
35 36
36 std::wstring page1_path; 37 FilePath page1_path;
37 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &page1_path)); 38 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &page1_path));
38 file_util::AppendToPath(&page1_path, L"title2.html"); 39 page1_path = page1_path.AppendASCII("title2.html");
39 ASSERT_TRUE(window_->AppendTab(net::FilePathToFileURL(page1_path))); 40 ASSERT_TRUE(window_->AppendTab(net::FilePathToFileURL(page1_path)));
40 41
41 std::wstring page2_path; 42 FilePath page2_path;
42 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &page2_path)); 43 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &page2_path));
43 file_util::AppendToPath(&page2_path, L"iframe.html"); 44 page2_path = page2_path.AppendASCII("iframe.html");
44 ASSERT_TRUE(window_->AppendTab(net::FilePathToFileURL(page2_path))); 45 ASSERT_TRUE(window_->AppendTab(net::FilePathToFileURL(page2_path)));
45 } 46 }
46 47
47 // Get a PrefService whose contents correspond to the Local State file 48 // Get a PrefService whose contents correspond to the Local State file
48 // that was saved by the app as it closed. The caller takes ownership of the 49 // that was saved by the app as it closed. The caller takes ownership of the
49 // returned PrefService object. 50 // returned PrefService object.
50 PrefService* GetLocalState() { 51 PrefService* GetLocalState() {
51 FilePath local_state_path = FilePath::FromWStringHack(user_data_dir()) 52 FilePath local_state_path = FilePath::FromWStringHack(user_data_dir())
52 .Append(chrome::kLocalStateFilename); 53 .Append(chrome::kLocalStateFilename);
53 54
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 scoped_ptr<PrefService> local_state(GetLocalState()); 107 scoped_ptr<PrefService> local_state(GetLocalState());
107 local_state->RegisterBooleanPref(prefs::kStabilityExitedCleanly, true); 108 local_state->RegisterBooleanPref(prefs::kStabilityExitedCleanly, true);
108 local_state->RegisterIntegerPref(prefs::kStabilityLaunchCount, 0); 109 local_state->RegisterIntegerPref(prefs::kStabilityLaunchCount, 0);
109 local_state->RegisterIntegerPref(prefs::kStabilityPageLoadCount, 0); 110 local_state->RegisterIntegerPref(prefs::kStabilityPageLoadCount, 0);
110 local_state->RegisterIntegerPref(prefs::kStabilityRendererCrashCount, 0); 111 local_state->RegisterIntegerPref(prefs::kStabilityRendererCrashCount, 0);
111 EXPECT_TRUE(local_state->GetBoolean(prefs::kStabilityExitedCleanly)); 112 EXPECT_TRUE(local_state->GetBoolean(prefs::kStabilityExitedCleanly));
112 EXPECT_EQ(1, local_state->GetInteger(prefs::kStabilityLaunchCount)); 113 EXPECT_EQ(1, local_state->GetInteger(prefs::kStabilityLaunchCount));
113 EXPECT_EQ(3, local_state->GetInteger(prefs::kStabilityPageLoadCount)); 114 EXPECT_EQ(3, local_state->GetInteger(prefs::kStabilityPageLoadCount));
114 EXPECT_EQ(1, local_state->GetInteger(prefs::kStabilityRendererCrashCount)); 115 EXPECT_EQ(1, local_state->GetInteger(prefs::kStabilityRendererCrashCount));
115 } 116 }
OLDNEW
« no previous file with comments | « chrome/browser/iframe_uitest.cc ('k') | chrome/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698