summaryrefslogtreecommitdiffstats
path: root/testing/performance/perftest_android_view.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/performance/perftest_android_view.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/performance/perftest_android_view.js')
-rw-r--r--testing/performance/perftest_android_view.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/testing/performance/perftest_android_view.js b/testing/performance/perftest_android_view.js
new file mode 100644
index 0000000000..50e4dce85e
--- /dev/null
+++ b/testing/performance/perftest_android_view.js
@@ -0,0 +1,44 @@
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+/* eslint-env node */
+"use strict";
+
+async function test(context, commands) {
+ await commands.measure.start();
+ await commands.measure.browser.wait(commands.measure.pageCompleteCheck);
+ await commands.measure.stop();
+
+ const browserScripts = commands.measure.result[0].browserScripts;
+
+ const processLaunchToNavStart =
+ browserScripts.pageinfo.navigationStartTime -
+ browserScripts.browser.processStartTime;
+
+ browserScripts.pageinfo.processLaunchToNavStart = processLaunchToNavStart;
+ console.log("processLaunchToNavStart: " + processLaunchToNavStart);
+
+ return true;
+}
+
+module.exports = {
+ test,
+ owner: "Performance Team",
+ name: "VIEW",
+ description: "Measures cold process view time",
+ longDescription: `
+ This test launches the appropriate android app, simulating a opening a link through VIEW intent
+ workflow. The application is launched with the intent action
+ android.intent.action.VIEW loading a trivially simple website. The reported
+ metric is the time from process start to navigationStart, reported as processLaunchToNavStart
+ `,
+ usage: `
+ ./mach perftest testing/performance/perftest_android_view.js \
+ --android-install-apk ~/fenix.v2.fennec-nightly.2020.04.22-arm32.apk \
+ --hooks testing/performance/hooks_android_view.py \
+ --android-app-name org.mozilla.fenix \
+ --perfherder-metrics processLaunchToNavStart
+ `,
+ supportedBrowsers: ["Fenix nightly", "Geckoview_example", "Fennec"],
+ supportedPlatforms: ["Android"],
+};