Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/webui/web_ui_browsertest.h" | 4 #include "chrome/browser/ui/webui/web_ui_browsertest.h" |
| 5 | 5 |
| 6 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 197 AddLibrary(FilePath(FILE_PATH_LITERAL("sample_downloads.js"))); | 197 AddLibrary(FilePath(FILE_PATH_LITERAL("sample_downloads.js"))); |
| 198 | 198 |
| 199 // Navigate to UI. | 199 // Navigate to UI. |
| 200 // TODO(dtseng): make accessor for subclasses to return? | 200 // TODO(dtseng): make accessor for subclasses to return? |
| 201 ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); | 201 ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUIDownloadsURL)); |
| 202 | 202 |
| 203 ASSERT_TRUE(RunJavascriptTest("testAssertFalse")); | 203 ASSERT_TRUE(RunJavascriptTest("testAssertFalse")); |
| 204 ASSERT_TRUE(RunJavascriptTest("testInitialFocus")); | 204 ASSERT_TRUE(RunJavascriptTest("testInitialFocus")); |
| 205 ASSERT_FALSE(RunJavascriptTest("testConsoleError")); | 205 ASSERT_FALSE(RunJavascriptTest("testConsoleError")); |
| 206 } | 206 } |
| 207 | |
| 208 // This test framework is used in the generated tests, which are included below. | |
| 209 class WebUIBrowserTestPass : public WebUIBrowserTest { | |
| 210 private: | |
| 211 // Because the inline file will be generated to call the javascript methods | |
| 212 // via RunJavascriptTest, we need to do any preliminary setup in this method. | |
| 213 // Note: WebUIBrowserTest doesn't override setup, so no need to call its | |
| 214 // SetupOnMainThread(). | |
| 215 virtual void SetUpOnMainThread() OVERRIDE { | |
| 216 ui_test_utils::NavigateToURL(browser(), | |
| 217 GURL(chrome::kChromeUIDownloadsURL)); | |
|
Paweł Hajdan Jr.
2011/06/15 08:12:31
The comments don't explain why we're navigating to
Sheridan Rawlins
2011/06/15 23:54:32
Ok, I made a dummy page and navigate to there inst
| |
| 218 } | |
| 219 }; | |
| 220 | |
| 221 #include "chrome/browser/ui/webui/web_ui_browsertest-inl.h" | |
| OLD | NEW |