OLD | NEW |
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 #include "base/basictypes.h" | 5 #include "base/basictypes.h" |
| 6 #include "base/file_path.h" |
6 #include "base/file_util.h" | 7 #include "base/file_util.h" |
7 #include "base/platform_thread.h" | 8 #include "base/platform_thread.h" |
8 #include "chrome/test/ui/ui_test.h" | 9 #include "chrome/test/ui/ui_test.h" |
9 #include "net/base/net_util.h" | 10 #include "net/base/net_util.h" |
10 | 11 |
11 class IFrameTest : public UITest { | 12 class IFrameTest : public UITest { |
12 protected: | 13 protected: |
13 void NavigateAndVerifyTitle(const wchar_t* url, const wchar_t* page_title) { | 14 void NavigateAndVerifyTitle(const char* url, const wchar_t* page_title) { |
14 std::wstring test_file = test_data_directory_; | 15 FilePath test_file(FilePath::FromWStringHack(test_data_directory_)); |
15 file_util::AppendToPath(&test_file, url); | 16 test_file = test_file.AppendASCII(url); |
16 | 17 |
17 NavigateToURL(net::FilePathToFileURL(test_file)); | 18 NavigateToURL(net::FilePathToFileURL(test_file)); |
18 // The browser lazily updates the title. | 19 // The browser lazily updates the title. |
19 PlatformThread::Sleep(sleep_timeout_ms()); | 20 PlatformThread::Sleep(sleep_timeout_ms()); |
20 | 21 |
21 // Make sure the navigation succeeded. | 22 // Make sure the navigation succeeded. |
22 EXPECT_EQ(std::wstring(page_title), GetActiveTabTitle()); | 23 EXPECT_EQ(std::wstring(page_title), GetActiveTabTitle()); |
23 | 24 |
24 // UITest will check if this crashed. | 25 // UITest will check if this crashed. |
25 } | 26 } |
26 | 27 |
27 }; | 28 }; |
28 | 29 |
29 TEST_F(IFrameTest, Crash) { | 30 TEST_F(IFrameTest, Crash) { |
30 NavigateAndVerifyTitle(L"iframe.html", L"iframe test"); | 31 NavigateAndVerifyTitle("iframe.html", L"iframe test"); |
31 } | 32 } |
32 | 33 |
33 TEST_F(IFrameTest, InEmptyFrame) { | 34 TEST_F(IFrameTest, InEmptyFrame) { |
34 NavigateAndVerifyTitle(L"iframe_in_empty_frame.html", L"iframe test"); | 35 NavigateAndVerifyTitle("iframe_in_empty_frame.html", L"iframe test"); |
35 } | 36 } |
OLD | NEW |