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

Unified Diff: chrome/test/base/javascript_browser_test.h

Issue 320753002: Support javascript gtests in an extension background page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: EXPECT_TRUE and TODO. Created 6 years, 6 months 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/test/base/extension_js_browser_test.cc ('k') | chrome/test/base/javascript_browser_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/javascript_browser_test.h
diff --git a/chrome/test/base/javascript_browser_test.h b/chrome/test/base/javascript_browser_test.h
new file mode 100644
index 0000000000000000000000000000000000000000..7160e579c0706196e9fa64916dd02a70417af7c1
--- /dev/null
+++ b/chrome/test/base/javascript_browser_test.h
@@ -0,0 +1,58 @@
+// Copyright 2014 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.
+
+#ifndef CHROME_TEST_BASE_JAVASCRIPT_BROWSER_TEST_H_
+#define CHROME_TEST_BASE_JAVASCRIPT_BROWSER_TEST_H_
+
+#include "base/memory/scoped_vector.h"
+#include "base/strings/string16.h"
+#include "base/values.h"
+#include "chrome/test/base/in_process_browser_test.h"
+
+// A base class providing construction of javascript testing assets.
+class JavaScriptBrowserTest : public InProcessBrowserTest {
+ public:
+ static const base::FilePath::CharType kA11yAuditLibraryJSPath[];
+ static const base::FilePath::CharType kMockJSPath[];
+ static const base::FilePath::CharType kWebUILibraryJS[];
+ static const base::FilePath::CharType kWebUITestFolder[];
+
+ typedef ScopedVector<const base::Value> ConstValueVector;
+
+ // Add a custom helper JS library for your test.
+ // If a relative path is specified, it'll be read
+ // as relative to the test data dir.
+ void AddLibrary(const base::FilePath& library_path);
+
+ protected:
+ JavaScriptBrowserTest();
+
+ virtual ~JavaScriptBrowserTest();
+
+ // InProcessBrowserTest overrides.
+ virtual void SetUpOnMainThread() OVERRIDE;
+
+ // Builds a vector of strings of all added javascript libraries suitable for
+ // execution by subclasses.
+ void BuildJavascriptLibraries(std::vector<base::string16>* libraries);
+
+ // Builds a string with a call to the runTest JS function, passing the
+ // given |is_async|, |test_name| and its |args|.
+ // This is then suitable for execution by subclasses in a
+ // |RunJavaScriptBrowserTestF| call.
+ base::string16 BuildRunTestJSCall(bool is_async,
+ const std::string& test_name,
+ const ConstValueVector& args);
+
+ private:
+ // User added libraries.
+ std::vector<base::FilePath> user_libraries_;
+
+ // User library search paths.
+ std::vector<base::FilePath> library_search_paths_;
+
+ DISALLOW_COPY_AND_ASSIGN(JavaScriptBrowserTest);
+};
+
+#endif // CHROME_TEST_BASE_JAVASCRIPT_BROWSER_TEST_H_
« no previous file with comments | « chrome/test/base/extension_js_browser_test.cc ('k') | chrome/test/base/javascript_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698