File: xrSession_requestSessionDuringEnd.https.html

package info (click to toggle)
thunderbird 1%3A140.4.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,609,432 kB
  • sloc: cpp: 7,672,442; javascript: 5,901,613; ansic: 3,898,954; python: 1,413,343; xml: 653,997; asm: 462,286; java: 180,927; sh: 113,489; makefile: 20,460; perl: 14,288; objc: 13,059; yacc: 4,583; pascal: 3,352; lex: 1,720; ruby: 1,222; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (68 lines) | stat: -rw-r--r-- 2,728 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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>