summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_peerConnection_stats.html
blob: 2ef98dc9c84889dada0a3877b10309339edc34bb (plain)
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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
  <script type="application/javascript" src="stats.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({
  bug: "1337525",
  title: "webRtc Stats composition and sanity"
});

runNetworkTest(async function (options) {
  // We don't know how to get QP value when using Android system codecs.
  if (navigator.userAgent.includes("Android")) {
    await pushPrefs(["media.navigator.mediadatadecoder_vpx_enabled", false],
                    ["media.webrtc.hw.h264.enabled", false]);
  }

  // For accurate comparisons of `remoteTimestamp` (not using reduced precision)
  // to `timestamp` (using reduced precision).
  await pushPrefs(["privacy.resistFingerprinting.reduceTimerPrecision.jitter",
                   false]);

  const test = new PeerConnectionTest(options);

  test.chain.insertAfter("PC_LOCAL_WAIT_FOR_MEDIA_FLOW",
    [PC_LOCAL_TEST_LOCAL_STATS]);

  test.chain.insertAfter("PC_REMOTE_WAIT_FOR_MEDIA_FLOW",
    [PC_REMOTE_TEST_REMOTE_STATS]);

  test.setMediaConstraints([{audio: true}, {video: true}],
                           [{audio: true}, {video: true}]);
  await test.run();
});
</script>
</pre>
</body>
</html>