summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webxr/xrSession_requestSessionDuringEnd.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/webxr/xrSession_requestSessionDuringEnd.https.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/webxr/xrSession_requestSessionDuringEnd.https.html')
-rw-r--r--testing/web-platform/tests/webxr/xrSession_requestSessionDuringEnd.https.html68
1 files changed, 68 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webxr/xrSession_requestSessionDuringEnd.https.html b/testing/web-platform/tests/webxr/xrSession_requestSessionDuringEnd.https.html
new file mode 100644
index 0000000000..38133b616a
--- /dev/null
+++ b/testing/web-platform/tests/webxr/xrSession_requestSessionDuringEnd.https.html
@@ -0,0 +1,68 @@
+<!DOCTYPE html>
+<body>
+ <script src=/resources/testharness.js></script>
+ <script src=/resources/testharnessreport.js></script>
+ <script src="resources/webxr_util.js"></script>
+ <script src="resources/webxr_test_constants.js"></script>
+
+ <script>
+ function testFunctionGenerator(createSessionFromEventCallback) {
+ return function(session, testDeviceController, t) {
+ let done = false;
+
+ function createSession() {
+ return new Promise((resolve) => {
+ navigator.xr.requestSession("immersive-vr")
+ .then((new_session) => {
+ // The test framework ensures that the created session ends,
+ // but will not do cleanup for this session, so if it gets
+ // created, we need to ensure that it gets cleaned up.
+ return new_session.end();
+ }).then(() => {
+ done = true;
+ resolve();
+ }).catch((err) => {
+ // Only one catch is needed for the whole promise chain.
+ // If ending the new session throws, it's fine to fail as
+ // we'd otherwise end up in a bad state.
+ t.step(() => {
+ assert_unreached("Session creation should not throw: " + err);
+ });
+ });
+ });
+ }
+
+ function onSessionEnd() {
+ if (createSessionFromEventCallback) {
+ createSession();
+ }
+ }
+
+ session.addEventListener("end", onSessionEnd, false);
+
+ // We need to simulate the user activation before we call end as
+ // otherwise (depending on the implementation) it can interfere with
+ // the scheduling of the dispatched event/promise, and make session
+ // creation succeed even when there may be bugs preventing it from
+ // doing so in real scenarios.
+ navigator.xr.test.simulateUserActivation(() => {
+ session.end().then(() => {
+ if (!createSessionFromEventCallback) {
+ createSession();
+ }
+ });
+ });
+
+ return t.step_wait(() => done);
+ };
+ }
+
+ xr_session_promise_test("Create new session in OnSessionEnded event",
+ testFunctionGenerator(/*createSessionFromEventCallback=*/true),
+ TRACKED_IMMERSIVE_DEVICE, 'immersive-vr');
+
+ xr_session_promise_test("Create mew session in end promise",
+ testFunctionGenerator(/*createSessionFromEventCallback=*/false),
+ TRACKED_IMMERSIVE_DEVICE, 'immersive-vr');
+ </script>
+</body>