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

Unified Diff: chrome/test/perf/sunspider_uitest.cc

Issue 11419268: Delete sunspider performance_ui_test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/perf/sunspider_uitest.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/perf/sunspider_uitest.cc
diff --git a/chrome/test/perf/sunspider_uitest.cc b/chrome/test/perf/sunspider_uitest.cc
deleted file mode 100644
index 84b9268bad354b2c07c375e0267c7e15719c1d96..0000000000000000000000000000000000000000
--- a/chrome/test/perf/sunspider_uitest.cc
+++ /dev/null
@@ -1,146 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/command_line.h"
-#include "base/file_util.h"
-#include "base/path_service.h"
-#include "base/string_util.h"
-#include "base/test/test_timeouts.h"
-#include "base/utf_string_conversions.h"
-#include "base/values.h"
-#include "chrome/common/chrome_paths.h"
-#include "chrome/test/automation/tab_proxy.h"
-#include "chrome/test/perf/perf_test.h"
-#include "chrome/test/ui/javascript_test_util.h"
-#include "chrome/test/ui/ui_perf_test.h"
-#include "googleurl/src/gurl.h"
-#include "net/base/net_util.h"
-
-namespace {
-
-static const FilePath::CharType kStartFile[] =
- FILE_PATH_LITERAL("sunspider-driver.html");
-
-const char kRunSunSpider[] = "run-sunspider";
-
-class SunSpiderTest : public UIPerfTest {
- public:
- typedef std::map<std::string, std::string> ResultsMap;
-
- SunSpiderTest() : reference_(false) {
- dom_automation_enabled_ = true;
- show_window_ = true;
- }
-
- void RunTest() {
- FilePath::StringType start_file(kStartFile);
- FilePath test_path = GetSunSpiderDir();
- test_path = test_path.Append(start_file);
- GURL test_url(net::FilePathToFileURL(test_path));
-
- scoped_refptr<TabProxy> tab(GetActiveTab());
- ASSERT_TRUE(tab.get());
- ASSERT_EQ(AUTOMATION_MSG_NAVIGATION_SUCCESS, tab->NavigateToURL(test_url));
-
- // Wait for the test to finish.
- ASSERT_TRUE(WaitUntilTestCompletes(tab.get(), test_url));
-
- PrintResults(tab.get());
- }
-
- protected:
- bool reference_; // True if this is a reference build.
-
- private:
- // Return the path to the SunSpider directory on the local filesystem.
- FilePath GetSunSpiderDir() {
- FilePath test_dir;
- PathService::Get(chrome::DIR_TEST_DATA, &test_dir);
- return test_dir.AppendASCII("sunspider");
- }
-
- bool WaitUntilTestCompletes(TabProxy* tab, const GURL& test_url) {
- return WaitUntilCookieValue(tab, test_url, "__done",
- TestTimeouts::large_test_timeout(), "1");
- }
-
- bool GetTotal(TabProxy* tab, std::string* total) {
- std::wstring total_wide;
- bool succeeded = tab->ExecuteAndExtractString(L"",
- L"window.domAutomationController.send(automation.GetTotal());",
- &total_wide);
-
- // Note that we don't use ASSERT_TRUE here (and in some other places) as it
- // doesn't work inside a function with a return type other than void.
- EXPECT_TRUE(succeeded);
- if (!succeeded)
- return false;
-
- total->assign(WideToUTF8(total_wide));
- return true;
- }
-
- bool GetResults(TabProxy* tab, ResultsMap* results) {
- std::wstring json_wide;
- bool succeeded = tab->ExecuteAndExtractString(L"",
- L"window.domAutomationController.send("
- L" JSON.stringify(automation.GetResults()));",
- &json_wide);
-
- EXPECT_TRUE(succeeded);
- if (!succeeded)
- return false;
-
- std::string json = WideToUTF8(json_wide);
- return JsonDictionaryToMap(json, results);
- }
-
- void PrintResults(TabProxy* tab) {
- std::string total;
- ASSERT_TRUE(GetTotal(tab, &total));
-
- ResultsMap results;
- ASSERT_TRUE(GetResults(tab, &results));
-
- std::string trace_name = reference_ ? "t_ref" : "t";
-
- perf_test::PrintResultMeanAndError("total", "", trace_name, total, "ms",
- true);
-
- ResultsMap::const_iterator it = results.begin();
- for (; it != results.end(); ++it)
- perf_test::PrintResultList(it->first, "", trace_name, it->second, "ms",
- false);
- }
-
- DISALLOW_COPY_AND_ASSIGN(SunSpiderTest);
-};
-
-class SunSpiderReferenceTest : public SunSpiderTest {
- public:
- SunSpiderReferenceTest() : SunSpiderTest() {
- reference_ = true;
- }
-
- void SetUp() {
- UseReferenceBuild();
- SunSpiderTest::SetUp();
- }
-};
-
-TEST_F(SunSpiderTest, Perf) {
- if (!CommandLine::ForCurrentProcess()->HasSwitch(kRunSunSpider))
- return;
-
- RunTest();
-}
-
-TEST_F(SunSpiderReferenceTest, Perf) {
- if (!CommandLine::ForCurrentProcess()->HasSwitch(kRunSunSpider))
- return;
-
- RunTest();
-}
-
-} // namespace
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/perf/sunspider_uitest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698