Override server-side simple-cache trial with commandline switches.
[chromium-blink-merge.git] / chrome / browser / browser_encoding_browsertest.cc
blobf793170bea9a12f3609b1adc050b58a20b7127d1
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
3 // found in the LICENSE file.
5 #include "base/bind.h"
6 #include "base/file_util.h"
7 #include "base/files/scoped_temp_dir.h"
8 #include "base/prefs/pref_service.h"
9 #include "chrome/browser/character_encoding.h"
10 #include "chrome/browser/net/url_request_mock_util.h"
11 #include "chrome/browser/profiles/profile.h"
12 #include "chrome/browser/ui/browser.h"
13 #include "chrome/browser/ui/browser_commands.h"
14 #include "chrome/browser/ui/tabs/tab_strip_model.h"
15 #include "chrome/common/pref_names.h"
16 #include "chrome/test/base/in_process_browser_test.h"
17 #include "chrome/test/base/ui_test_utils.h"
18 #include "content/public/browser/browser_thread.h"
19 #include "content/public/browser/download_manager.h"
20 #include "content/public/browser/navigation_controller.h"
21 #include "content/public/browser/notification_service.h"
22 #include "content/public/browser/notification_source.h"
23 #include "content/public/browser/notification_types.h"
24 #include "content/public/browser/web_contents.h"
25 #include "content/public/test/test_navigation_observer.h"
26 #include "content/test/net/url_request_mock_http_job.h"
28 namespace {
30 struct EncodingTestData {
31 const char* file_name;
32 const char* encoding_name;
35 const EncodingTestData kEncodingTestDatas[] = {
36 { "Big5.html", "Big5" },
37 { "EUC-JP.html", "EUC-JP" },
38 { "gb18030.html", "gb18030" },
39 { "iso-8859-1.html", "ISO-8859-1" },
40 { "ISO-8859-2.html", "ISO-8859-2" },
41 { "ISO-8859-4.html", "ISO-8859-4" },
42 { "ISO-8859-5.html", "ISO-8859-5" },
43 { "ISO-8859-6.html", "ISO-8859-6" },
44 { "ISO-8859-7.html", "ISO-8859-7" },
45 { "ISO-8859-8.html", "ISO-8859-8" },
46 { "ISO-8859-13.html", "ISO-8859-13" },
47 { "ISO-8859-15.html", "ISO-8859-15" },
48 { "KOI8-R.html", "KOI8-R" },
49 { "KOI8-U.html", "KOI8-U" },
50 { "macintosh.html", "macintosh" },
51 { "Shift-JIS.html", "Shift_JIS" },
52 { "US-ASCII.html", "ISO-8859-1" }, // http://crbug.com/15801
53 { "UTF-8.html", "UTF-8" },
54 { "UTF-16LE.html", "UTF-16LE" },
55 { "windows-874.html", "windows-874" },
56 // http://crbug.com/95963
57 // { "windows-949.html", "windows-949" },
58 { "windows-1250.html", "windows-1250" },
59 { "windows-1251.html", "windows-1251" },
60 { "windows-1252.html", "windows-1252" },
61 { "windows-1253.html", "windows-1253" },
62 { "windows-1254.html", "windows-1254" },
63 { "windows-1255.html", "windows-1255" },
64 { "windows-1256.html", "windows-1256" },
65 { "windows-1257.html", "windows-1257" },
66 { "windows-1258.html", "windows-1258" }
69 class SavePackageFinishedObserver : public content::DownloadManager::Observer {
70 public:
71 SavePackageFinishedObserver(content::DownloadManager* manager,
72 const base::Closure& callback)
73 : download_manager_(manager),
74 callback_(callback) {
75 download_manager_->AddObserver(this);
78 virtual ~SavePackageFinishedObserver() {
79 if (download_manager_)
80 download_manager_->RemoveObserver(this);
83 // DownloadManager::Observer:
84 virtual void OnSavePackageSuccessfullyFinished(
85 content::DownloadManager* manager, content::DownloadItem* item) OVERRIDE {
86 callback_.Run();
88 virtual void ManagerGoingDown(content::DownloadManager* manager) OVERRIDE {
89 download_manager_->RemoveObserver(this);
90 download_manager_ = NULL;
93 private:
94 content::DownloadManager* download_manager_;
95 base::Closure callback_;
97 DISALLOW_COPY_AND_ASSIGN(SavePackageFinishedObserver);
100 } // namespace
102 using content::BrowserThread;
104 static const base::FilePath::CharType* kTestDir =
105 FILE_PATH_LITERAL("encoding_tests");
107 class BrowserEncodingTest
108 : public InProcessBrowserTest,
109 public testing::WithParamInterface<EncodingTestData> {
110 protected:
111 BrowserEncodingTest() {}
113 // Saves the current page and verifies that the output matches the expected
114 // result.
115 void SaveAndCompare(const char* filename_to_write,
116 const base::FilePath& expected) {
117 // Dump the page, the content of dump page should be identical to the
118 // expected result file.
119 base::FilePath full_file_name = save_dir_.AppendASCII(filename_to_write);
120 // We save the page as way of complete HTML file, which requires a directory
121 // name to save sub resources in it. Although this test file does not have
122 // sub resources, but the directory name is still required.
123 scoped_refptr<content::MessageLoopRunner> loop_runner(
124 new content::MessageLoopRunner);
125 SavePackageFinishedObserver observer(
126 content::BrowserContext::GetDownloadManager(browser()->profile()),
127 loop_runner->QuitClosure());
128 browser()->tab_strip_model()->GetActiveWebContents()->SavePage(
129 full_file_name, temp_sub_resource_dir_,
130 content::SAVE_PAGE_TYPE_AS_COMPLETE_HTML);
131 loop_runner->Run();
133 base::FilePath expected_file_name = ui_test_utils::GetTestFilePath(
134 base::FilePath(kTestDir), expected);
136 EXPECT_TRUE(file_util::ContentsEqual(full_file_name, expected_file_name));
139 virtual void SetUpOnMainThread() OVERRIDE {
140 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
141 save_dir_ = temp_dir_.path();
142 temp_sub_resource_dir_ = save_dir_.AppendASCII("sub_resource_files");
144 BrowserThread::PostTask(
145 BrowserThread::IO, FROM_HERE,
146 base::Bind(&chrome_browser_net::SetUrlRequestMocksEnabled, true));
149 base::ScopedTempDir temp_dir_;
150 base::FilePath save_dir_;
151 base::FilePath temp_sub_resource_dir_;
154 // TODO(jnd): 1. Some encodings are missing here. It'll be added later. See
155 // http://crbug.com/13306.
156 // 2. Add more files with multiple encoding name variants for each canonical
157 // encoding name). Webkit layout tests cover some, but testing in the UI test is
158 // also necessary.
159 IN_PROC_BROWSER_TEST_P(BrowserEncodingTest, TestEncodingAliasMapping) {
160 const char* const kAliasTestDir = "alias_mapping";
162 base::FilePath test_dir_path = base::FilePath(kTestDir).AppendASCII(
163 kAliasTestDir);
164 base::FilePath test_file_path(test_dir_path);
165 test_file_path = test_file_path.AppendASCII(
166 GetParam().file_name);
168 GURL url = content::URLRequestMockHTTPJob::GetMockUrl(test_file_path);
169 ui_test_utils::NavigateToURL(browser(), url);
170 EXPECT_EQ(GetParam().encoding_name,
171 browser()->tab_strip_model()->GetActiveWebContents()->
172 GetEncoding());
175 INSTANTIATE_TEST_CASE_P(EncodingAliases,
176 BrowserEncodingTest,
177 testing::ValuesIn(kEncodingTestDatas));
179 // Marked as flaky: see http://crbug.com/44668
180 IN_PROC_BROWSER_TEST_F(BrowserEncodingTest, TestOverrideEncoding) {
181 const char* const kTestFileName = "gb18030_with_iso88591_meta.html";
182 const char* const kExpectedFileName =
183 "expected_gb18030_saved_from_iso88591_meta.html";
184 const char* const kOverrideTestDir = "user_override";
186 base::FilePath test_dir_path =
187 base::FilePath(kTestDir).AppendASCII(kOverrideTestDir);
188 test_dir_path = test_dir_path.AppendASCII(kTestFileName);
189 GURL url = content::URLRequestMockHTTPJob::GetMockUrl(test_dir_path);
190 ui_test_utils::NavigateToURL(browser(), url);
191 content::WebContents* web_contents =
192 browser()->tab_strip_model()->GetActiveWebContents();
193 EXPECT_EQ("ISO-8859-1", web_contents->GetEncoding());
195 // Override the encoding to "gb18030".
196 const std::string selected_encoding =
197 CharacterEncoding::GetCanonicalEncodingNameByAliasName("gb18030");
198 content::TestNavigationObserver navigation_observer(
199 content::Source<content::NavigationController>(
200 &web_contents->GetController()));
201 web_contents->SetOverrideEncoding(selected_encoding);
202 navigation_observer.Wait();
203 EXPECT_EQ("gb18030", web_contents->GetEncoding());
205 base::FilePath expected_filename =
206 base::FilePath().AppendASCII(kOverrideTestDir).AppendASCII(
207 kExpectedFileName);
208 SaveAndCompare(kTestFileName, expected_filename);
211 // The following encodings are excluded from the auto-detection test because
212 // it's a known issue that the current encoding detector does not detect them:
213 // ISO-8859-4
214 // ISO-8859-13
215 // KOI8-U
216 // macintosh
217 // windows-874
218 // windows-1252
219 // windows-1253
220 // windows-1257
221 // windows-1258
223 // For Hebrew, the expected encoding value is ISO-8859-8-I. See
224 // http://crbug.com/2927 for more details.
226 // This test fails frequently on the win_rel trybot. See http://crbug.com/122053
227 #if defined(OS_WIN) || defined(OS_MACOSX)
228 #define MAYBE_TestEncodingAutoDetect DISABLED_TestEncodingAutoDetect
229 #else
230 #define MAYBE_TestEncodingAutoDetect TestEncodingAutoDetect
231 #endif
232 // TODO(phajdan.jr): See if fix for http://crbug.com/122053 would help here.
233 IN_PROC_BROWSER_TEST_F(BrowserEncodingTest, MAYBE_TestEncodingAutoDetect) {
234 struct EncodingAutoDetectTestData {
235 const char* test_file_name; // File name of test data.
236 const char* expected_result; // File name of expected results.
237 const char* expected_encoding; // expected encoding.
239 const EncodingAutoDetectTestData kTestDatas[] = {
240 { "Big5_with_no_encoding_specified.html",
241 "expected_Big5_saved_from_no_encoding_specified.html",
242 "Big5" },
243 { "gb18030_with_no_encoding_specified.html",
244 "expected_gb18030_saved_from_no_encoding_specified.html",
245 "gb18030" },
246 { "iso-8859-1_with_no_encoding_specified.html",
247 "expected_iso-8859-1_saved_from_no_encoding_specified.html",
248 "ISO-8859-1" },
249 { "ISO-8859-5_with_no_encoding_specified.html",
250 "expected_ISO-8859-5_saved_from_no_encoding_specified.html",
251 "ISO-8859-5" },
252 { "ISO-8859-6_with_no_encoding_specified.html",
253 "expected_ISO-8859-6_saved_from_no_encoding_specified.html",
254 "ISO-8859-6" },
255 { "ISO-8859-7_with_no_encoding_specified.html",
256 "expected_ISO-8859-7_saved_from_no_encoding_specified.html",
257 "ISO-8859-7" },
258 { "ISO-8859-8_with_no_encoding_specified.html",
259 "expected_ISO-8859-8_saved_from_no_encoding_specified.html",
260 "ISO-8859-8-I" },
261 { "KOI8-R_with_no_encoding_specified.html",
262 "expected_KOI8-R_saved_from_no_encoding_specified.html",
263 "KOI8-R" },
264 { "Shift-JIS_with_no_encoding_specified.html",
265 "expected_Shift-JIS_saved_from_no_encoding_specified.html",
266 "Shift_JIS" },
267 { "UTF-8_with_no_encoding_specified.html",
268 "expected_UTF-8_saved_from_no_encoding_specified.html",
269 "UTF-8" },
270 { "windows-949_with_no_encoding_specified.html",
271 "expected_windows-949_saved_from_no_encoding_specified.html",
272 "windows-949-2000" },
273 { "windows-1251_with_no_encoding_specified.html",
274 "expected_windows-1251_saved_from_no_encoding_specified.html",
275 "windows-1251" },
276 { "windows-1254_with_no_encoding_specified.html",
277 "expected_windows-1254_saved_from_no_encoding_specified.html",
278 "windows-1254" },
279 { "windows-1255_with_no_encoding_specified.html",
280 "expected_windows-1255_saved_from_no_encoding_specified.html",
281 "windows-1255" },
282 { "windows-1256_with_no_encoding_specified.html",
283 "expected_windows-1256_saved_from_no_encoding_specified.html",
284 "windows-1256" }
286 const char* const kAutoDetectDir = "auto_detect";
287 // Directory of the files of expected results.
288 const char* const kExpectedResultDir = "expected_results";
290 base::FilePath test_dir_path =
291 base::FilePath(kTestDir).AppendASCII(kAutoDetectDir);
293 // Set the default charset to one of encodings not supported by the current
294 // auto-detector (Please refer to the above comments) to make sure we
295 // incorrectly decode the page. Now we use ISO-8859-4.
296 browser()->profile()->GetPrefs()->SetString(prefs::kDefaultCharset,
297 "ISO-8859-4");
299 content::WebContents* web_contents =
300 browser()->tab_strip_model()->GetActiveWebContents();
301 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kTestDatas); ++i) {
302 // Disable auto detect if it is on.
303 browser()->profile()->GetPrefs()->SetBoolean(
304 prefs::kWebKitUsesUniversalDetector, false);
306 base::FilePath test_file_path(test_dir_path);
307 test_file_path = test_file_path.AppendASCII(kTestDatas[i].test_file_name);
308 GURL url = content::URLRequestMockHTTPJob::GetMockUrl(test_file_path);
309 ui_test_utils::NavigateToURL(browser(), url);
311 // Get the encoding used for the page, it must be the default charset we
312 // just set.
313 EXPECT_EQ("ISO-8859-4", web_contents->GetEncoding());
315 // Enable the encoding auto detection.
316 browser()->profile()->GetPrefs()->SetBoolean(
317 prefs::kWebKitUsesUniversalDetector, true);
319 content::TestNavigationObserver observer(
320 content::Source<content::NavigationController>(
321 &web_contents->GetController()));
322 chrome::Reload(browser(), CURRENT_TAB);
323 observer.Wait();
325 // Re-get the encoding of page. It should return the real encoding now.
326 EXPECT_EQ(kTestDatas[i].expected_encoding, web_contents->GetEncoding());
328 // Dump the page, the content of dump page should be equal with our expect
329 // result file.
330 base::FilePath expected_result_file_name =
331 base::FilePath().AppendASCII(kAutoDetectDir).
332 AppendASCII(kExpectedResultDir).
333 AppendASCII(kTestDatas[i].expected_result);
334 SaveAndCompare(kTestDatas[i].test_file_name, expected_result_file_name);