Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/runners/chromiumwd_process.js

Issue 29720661: Issue 6391 - Allow running the browser unit tests with Firefox (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: eslint options and gitignore Created April 24, 2018, 2:05 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/runners/chromiumwd_process.js
===================================================================
new file mode 100644
--- /dev/null
+++ b/test/runners/chromiumwd_process.js
@@ -0,0 +1,59 @@
+/*
kzar 2018/05/04 10:52:43 Since this file (the Chromium WebDriver runner) is
hub 2018/05/18 00:04:22 There are trivial enough that merging them would m
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-present eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+"use strict";
+
+const {Builder} = require("selenium-webdriver");
+const chrome = require("selenium-webdriver/chrome");
+require("chromedriver");
+
+const {executeScript} = require("./webdriver");
+const {ensureChromium} = require("./chromium_download");
+
+// Chromium 63.0.3239.x
kzar 2018/05/04 10:52:43 Seems like one of these comments can go?
hub 2018/05/18 00:04:22 Yes and no. It is kinda difficult to figure out wh
+const CHROMIUM_REVISION = 508578;
+// Chromium 65.0.3325.0 is 530368
+
+function runScript(chromiumPath, script, scriptName, scriptArgs)
+{
+ const options = new chrome.Options()
+ .headless()
+ .setChromeBinaryPath(chromiumPath);
+
+ const driver = new Builder()
+ .forBrowser("chrome")
+ .setChromeOptions(options)
+ .build();
+
+ return executeScript(driver, "Chromium (WebDriver)",
+ script, scriptName, scriptArgs);
+}
+
+module.exports = function(script, scriptName, ...scriptArgs)
+{
+ return ensureChromium(CHROMIUM_REVISION).then(chromiumPath =>
+ {
+ return runScript(chromiumPath, script, scriptName, scriptArgs)
+ .then(result =>
+ {
+ return result;
+ }).catch(error =>
+ {
+ throw error;
+ });
+ });
+};

Powered by Google App Engine
This is Rietveld