OLD | NEW |
1 // Copyright (c) 2010 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 | 4 |
5 #include <string> | 5 #include <string> |
6 | 6 |
7 #include "app/app_switches.h" | 7 #include "app/app_switches.h" |
8 #include "app/message_box_flags.h" | 8 #include "app/message_box_flags.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/i18n/rtl.h" | 13 #include "base/i18n/rtl.h" |
14 #include "base/scoped_temp_dir.h" | 14 #include "base/scoped_temp_dir.h" |
15 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
16 #include "base/string_util.h" | 16 #include "base/string_util.h" |
17 #include "base/stringprintf.h" | 17 #include "base/stringprintf.h" |
18 #include "base/sys_info.h" | 18 #include "base/sys_info.h" |
| 19 #include "base/test/test_timeouts.h" |
19 #include "base/utf_string_conversions.h" | 20 #include "base/utf_string_conversions.h" |
20 #include "build/build_config.h" | 21 #include "build/build_config.h" |
21 #include "chrome/app/chrome_command_ids.h" | 22 #include "chrome/app/chrome_command_ids.h" |
22 #include "chrome/browser/net/url_request_slow_http_job.h" | 23 #include "chrome/browser/net/url_request_slow_http_job.h" |
23 #include "chrome/browser/ui/view_ids.h" | 24 #include "chrome/browser/ui/view_ids.h" |
24 #include "chrome/common/automation_messages.h" | 25 #include "chrome/common/automation_messages.h" |
25 #include "chrome/common/chrome_constants.h" | 26 #include "chrome/common/chrome_constants.h" |
26 #include "chrome/common/chrome_switches.h" | 27 #include "chrome/common/chrome_switches.h" |
27 #include "chrome/common/json_value_serializer.h" | 28 #include "chrome/common/json_value_serializer.h" |
28 #include "chrome/common/url_constants.h" | 29 #include "chrome/common/url_constants.h" |
(...skipping 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1554 scoped_refptr<TabProxy> tab(window->GetTab(0)); | 1555 scoped_refptr<TabProxy> tab(window->GetTab(0)); |
1555 ASSERT_TRUE(tab.get()); | 1556 ASSERT_TRUE(tab.get()); |
1556 | 1557 |
1557 FilePath filename(test_data_directory_); | 1558 FilePath filename(test_data_directory_); |
1558 filename = filename.AppendASCII("dom_automation_test_with_popup.html"); | 1559 filename = filename.AppendASCII("dom_automation_test_with_popup.html"); |
1559 | 1560 |
1560 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, | 1561 ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, |
1561 tab->NavigateToURL(net::FilePathToFileURL(filename))); | 1562 tab->NavigateToURL(net::FilePathToFileURL(filename))); |
1562 | 1563 |
1563 // Allow some time for the popup to show up and close. | 1564 // Allow some time for the popup to show up and close. |
1564 base::PlatformThread::Sleep(sleep_timeout_ms()); | 1565 base::PlatformThread::Sleep(TestTimeouts::action_timeout_ms()); |
1565 | 1566 |
1566 std::wstring expected(L"string"); | 1567 std::wstring expected(L"string"); |
1567 std::wstring jscript = CreateJSString(L"\"" + expected + L"\""); | 1568 std::wstring jscript = CreateJSString(L"\"" + expected + L"\""); |
1568 std::wstring actual; | 1569 std::wstring actual; |
1569 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual)); | 1570 ASSERT_TRUE(tab->ExecuteAndExtractString(L"", jscript, &actual)); |
1570 ASSERT_EQ(expected, actual); | 1571 ASSERT_EQ(expected, actual); |
1571 } | 1572 } |
1572 | 1573 |
1573 class AutomationProxySnapshotTest : public UITest { | 1574 class AutomationProxySnapshotTest : public UITest { |
1574 protected: | 1575 protected: |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1746 int diff_pixels_count = 0; | 1747 int diff_pixels_count = 0; |
1747 for (int x = 0; x < img_size.width(); ++x) { | 1748 for (int x = 0; x < img_size.width(); ++x) { |
1748 for (int y = 0; y < img_size.height(); ++y) { | 1749 for (int y = 0; y < img_size.height(); ++y) { |
1749 if (*snapshot_bmp.getAddr32(x, y) != *reference_bmp.getAddr32(x, y)) { | 1750 if (*snapshot_bmp.getAddr32(x, y) != *reference_bmp.getAddr32(x, y)) { |
1750 ++diff_pixels_count; | 1751 ++diff_pixels_count; |
1751 } | 1752 } |
1752 } | 1753 } |
1753 } | 1754 } |
1754 ASSERT_EQ(diff_pixels_count, 0); | 1755 ASSERT_EQ(diff_pixels_count, 0); |
1755 } | 1756 } |
OLD | NEW |