summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_selftest.html
blob: e755939a2c6370d7cf0a1e3b25710a9ee05afec5 (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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript;version=1.8">
  createHTML({
    title: "Self-test of harness functions",
    visible: true
  });

function TEST(test) {}

var catcher = func => {
  try {
    func();
    return null;
  } catch (e) {
    return e.message;
  }
};

runNetworkTest(() => {
  var test = new PeerConnectionTest();
  test.setMediaConstraints([{video: true}], [{video: true}]);
  is(catcher(() => test.chain.replace("PC_LOCAL_SET_LOCAL_DESCRIPTION", TEST)),
     null, "test.chain.replace works");
  is(catcher(() => test.chain.replace("FOO", TEST)),
     "Unknown test: FOO", "test.chain.replace catches typos");
  networkTestFinished();
});

</script>
</pre>
</body>
</html>