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

Side by Side Diff: chrome/test/perf/perf_ui_test_suite.cc

Issue 14585015: Recommit the generate profile patch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Load the browser dll manually on Windows. Created 7 years, 7 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/test/perf/perf_ui_test_suite.h ('k') | chrome/test/perf/run_all_perfuitests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/test/perf/perf_ui_test_suite.h"
6
7 #include "base/file_util.h"
8 #include "base/json/json_file_value_serializer.h"
9 #include "base/lazy_instance.h"
10 #include "base/logging.h"
11 #include "base/message_loop.h"
12 #include "base/path_service.h"
13 #include "base/string_util.h"
14 #include "base/threading/platform_thread.h"
15 #include "base/utf_string_conversions.h"
16 #include "chrome/browser/themes/browser_theme_pack.h"
17 #include "chrome/common/chrome_constants.h"
18 #include "chrome/common/chrome_paths.h"
19 #include "chrome/common/extensions/extension.h"
20 #include "chrome/test/perf/generate_profile.h"
21 #include "content/public/test/test_browser_thread.h"
22
23 #if defined(OS_WIN)
24 #include <atlbase.h>
25 #include "ui/base/resource/resource_bundle_win.h"
26 #endif
27
28 using content::BrowserThread;
29 using extensions::Extension;
30
31 namespace {
32
33 const int kNumURLs = 20000;
34
35 const char kThemeExtension[] = "mblmlcbknbnfebdfjnolmcapmdofhmme";
36
37 base::LazyInstance<base::FilePath> g_default_profile_dir =
38 LAZY_INSTANCE_INITIALIZER;
39 base::LazyInstance<base::FilePath> g_complex_profile_dir =
40 LAZY_INSTANCE_INITIALIZER;
41
42 } // namespace
43
44 PerfUITestSuite::PerfUITestSuite(int argc, char** argv)
45 : UITestSuite(argc, argv) {
46 base::PlatformThread::SetName("Tests_Main");
47 }
48
49 PerfUITestSuite::~PerfUITestSuite() {
50 }
51
52 base::FilePath PerfUITestSuite::GetPathForProfileType(
53 ProfileType profile_type) {
54 switch (profile_type) {
55 case DEFAULT_THEME:
56 return g_default_profile_dir.Get();
57 case COMPLEX_THEME:
58 return g_complex_profile_dir.Get();
59 default:
60 NOTREACHED();
61 return base::FilePath();
62 }
63 }
64
65 void PerfUITestSuite::Initialize() {
66 #if defined(OS_WIN)
67 // On Windows, make sure we've loaded the main chrome dll for its resource
68 // before we let our parent class initialize the shared resource bundle
69 // infrastructure. We have to do this manually because the extension system
70 // uses several resources which, on Windows, are only compiled into the
71 // browser DLL, but the base chrome testing stuff is used outside of browser.
72 //
73 // TODO(darin): Kill this once http://crbug.com/52609 is fixed.
74 base::FilePath dll;
75 PathService::Get(base::DIR_MODULE, &dll);
76 dll = dll.Append(chrome::kBrowserResourcesDll);
77 HMODULE res_mod = ::LoadLibraryExW(dll.value().c_str(),
78 NULL, LOAD_LIBRARY_AS_DATAFILE | LOAD_LIBRARY_AS_IMAGE_RESOURCE);
79 DCHECK(res_mod);
80 _AtlBaseModule.SetResourceInstance(res_mod);
81
82 ui::SetResourcesDataDLL(_AtlBaseModule.GetResourceInstance());
83 #endif
84
85 UITestSuite::Initialize();
86
87 if (!default_profile_dir_.CreateUniqueTempDir()) {
88 LOG(FATAL) << "Failed to create default profile directory...";
89 }
90
91 // Build a profile in default profile dir.
92 base::FilePath default_path =
93 default_profile_dir_.path().AppendASCII("Default");
94 if (!GenerateProfile(TOP_SITES, kNumURLs, default_path)) {
95 LOG(FATAL) << "Failed to generate default profile for tests...";
96 }
97
98 g_default_profile_dir.Get() = default_profile_dir_.path();
99
100 if (!complex_profile_dir_.CreateUniqueTempDir()) {
101 LOG(FATAL) << "Failed to create complex profile directory...";
102 }
103
104 if (!file_util::CopyDirectory(default_path,
105 complex_profile_dir_.path(),
106 true)) {
107 LOG(FATAL) << "Failed to copy data to complex profile directory...";
108 }
109
110 // Copy the Extensions directory from the template into the
111 // complex_profile_dir dir.
112 base::FilePath base_data_dir;
113 if (!PathService::Get(chrome::DIR_TEST_DATA, &base_data_dir))
114 LOG(FATAL) << "Failed to fetch test data dir";
115
116 base_data_dir = base_data_dir.AppendASCII("profiles");
117 base_data_dir = base_data_dir.AppendASCII("profile_with_complex_theme");
118 base_data_dir = base_data_dir.AppendASCII("Default");
119
120 if (!file_util::CopyDirectory(base_data_dir,
121 complex_profile_dir_.path(),
122 true)) {
123 LOG(FATAL) << "Failed to copy default to complex profile";
124 }
125
126 // Parse the manifest and make a temporary extension object because the
127 // theme system takes extensions as input.
128 base::FilePath extension_base =
129 complex_profile_dir_.path()
130 .AppendASCII("Default")
131 .AppendASCII("Extensions")
132 .AppendASCII(kThemeExtension)
133 .AppendASCII("1.1");
134 BuildCachedThemePakIn(extension_base);
135
136 g_complex_profile_dir.Get() = complex_profile_dir_.path();
137 }
138
139 void PerfUITestSuite::BuildCachedThemePakIn(
140 const base::FilePath& extension_base) {
141 int error_code = 0;
142 std::string error;
143 JSONFileValueSerializer serializer(
144 extension_base.AppendASCII("manifest.json"));
145 scoped_ptr<DictionaryValue> valid_value(static_cast<DictionaryValue*>(
146 serializer.Deserialize(&error_code, &error)));
147 if (error_code != 0 || !valid_value)
148 LOG(FATAL) << "Error parsing theme manifest: " << error;
149
150 scoped_refptr<Extension> extension =
151 Extension::Create(extension_base,
152 extensions::Manifest::INVALID_LOCATION,
153 *valid_value,
154 Extension::NO_FLAGS,
155 &error);
156 if (!extension)
157 LOG(FATAL) << "Error loading theme extension: " << error;
158
159 // Build the "Cached Theme.pak" file in the template. (It's not committed
160 // both because committing large binary files is bad in a git world and
161 // because people don't remember to update it anyway, meaning we usually
162 // have the theme rebuild penalty in our data.)
163 MessageLoopForUI message_loop_;
164 content::TestBrowserThread ui_thread_(BrowserThread::UI, &message_loop_);
165 content::TestBrowserThread file_thread_(BrowserThread::FILE,
166 &message_loop_);
167
168 scoped_refptr<BrowserThemePack> theme(
169 BrowserThemePack::BuildFromExtension(extension));
170 if (!theme)
171 LOG(FATAL) << "Failed to load theme from extension";
172
173 theme->WriteToDisk(extension_base.AppendASCII("Cached Theme.pak"));
174 }
OLDNEW
« no previous file with comments | « chrome/test/perf/perf_ui_test_suite.h ('k') | chrome/test/perf/run_all_perfuitests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698