summaryrefslogtreecommitdiffstats
path: root/net/data/websocket/multiple-connections.html
blob: 0fe9e973347479f8d211352408a1f0468da24efa (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
<title>WebSocket is not subject to HTTP(S) connection limit</title>
<script>
var protocol = location.protocol.replace('http', 'ws');
var url = protocol + '//' + location.host + '/echo-with-no-extension';

// TODO(ricea): The limit for ws: is 255, but wss: gets a limit of 30
// (per-host:port, not ip:port!) because it still uses the HTTP pool code. This
// should be fixed at some point. When it is, change this number back to 50 (or
// even larger, if it works).
const SOCKETS_TO_OPEN = 30;

// PARALLELISM limits the number of connections we try to open simultaneously.
// This avoids triggering the throttling added in http://crrev.com/972963002,
// which otherwise slows the test down considerably.
const PARALLELISM = 2;

var created = 0;
var connected = 0;

function createNewWebSocket()
{
  var ws = new WebSocket(url);
  ++created;

  ws.onopen = function() {
    if (created < SOCKETS_TO_OPEN) {
      createNewWebSocket();
    }
    ++connected;
    if (connected == SOCKETS_TO_OPEN) {
      document.title = "PASS";
    }
  };
  ws.onclose = function() {
    document.title = "FAIL";
  };
}

for (var i = 0; i < PARALLELISM; ++i) {
  createNewWebSocket();
}

setTimeout(function() {
  console.log("Got stuck after " + connected + " socket(s) connected");
  document.title = "FAIL";
}, 5000);
</script>