summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_peerConnection_bug827843.html
blob: 01d566981f00cb05717f304782866cfda2fadeb9 (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
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
69
70
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "827843",
    title: "Ensure that localDescription and remoteDescription are null after close"
  });

var steps = [
  function CHECK_SDP_ON_CLOSED_PC(test) {
    var description;
    var exception = null;

    // handle the event which the close() triggers
    var localClosed = new Promise(resolve => {
      test.pcLocal.onsignalingstatechange = e => {
        is(e.target.signalingState, "closed",
           "Received expected onsignalingstatechange event on 'closed'");
        resolve();
      }
    });

    test.pcLocal.close();

    try { description = test.pcLocal.localDescription; } catch (e) { exception = e; }
    ok(exception, "Attempt to access localDescription of pcLocal after close throws exception");
    exception = null;

    try { description = test.pcLocal.remoteDescription; } catch (e) { exception = e; }
    ok(exception, "Attempt to access remoteDescription of pcLocal after close throws exception");
    exception = null;

    // handle the event which the close() triggers
    var remoteClosed = new Promise(resolve => {
      test.pcRemote.onsignalingstatechange = e => {
        is(e.target.signalingState, "closed",
           "Received expected onsignalingstatechange event on 'closed'");
        resolve();
      }
    });

    test.pcRemote.close();

    try  { description = test.pcRemote.localDescription; } catch (e) { exception = e; }
    ok(exception, "Attempt to access localDescription of pcRemote after close throws exception");
    exception = null;

    try  { description = test.pcRemote.remoteDescription; } catch (e) { exception = e; }
    ok(exception, "Attempt to access remoteDescription of pcRemote after close throws exception");

    return Promise.all([localClosed, remoteClosed]);
  }
];

var test;
runNetworkTest(() => {
  test = new PeerConnectionTest();
  test.setMediaConstraints([{audio: true}], [{audio: true}]);
  test.chain.append(steps);
  test.run();
});
</script>
</pre>
</body>
</html>