summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/pywebsocket/src/example/console.html
blob: ccd6d8f80676b9991e22dfc7ec85083411ddd0b3 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!--
Copyright 2011, Google Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

    * Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
    * Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->

<!--
A simple console for testing WebSocket server.

Type an address into the top text input and click connect to establish
WebSocket. Then, type some message into the bottom text input and click send
to send the message. Received/sent messages and connection state will be shown
on the middle textarea.
-->

<html>
<head>
<title>WebSocket console</title>
<script>
var socket = null;

var showTimeStamp = false;

var addressBox = null;
var protocolsBox = null;
var logBox = null;
var messageBox = null;
var fileBox = null;
var codeBox = null;
var reasonBox = null;

function getTimeStamp() {
  return new Date().getTime();
}

function addToLog(log) {
  if (showTimeStamp) {
    logBox.value += '[' + getTimeStamp() + '] ';
  }
  logBox.value += log + '\n'
  // Large enough to keep showing the latest message.
  logBox.scrollTop = 1000000;
}

function setbinarytype(binaryType) {
  if (!socket) {
    addToLog('Not connected');
    return;
  }

  socket.binaryType = binaryType;
  addToLog('Set binaryType to ' + binaryType);
}

function send() {
  if (!socket) {
    addToLog('Not connected');
    return;
  }

  socket.send(messageBox.value);
  addToLog('> ' + messageBox.value);
  messageBox.value = '';
}

function sendfile() {
  if (!socket) {
    addToLog('Not connected');
    return;
  }

  var files = fileBox.files;

  if (files.length == 0) {
    addToLog('File not selected');
    return;
  }

  socket.send(files[0]);
  addToLog('> Send ' + files[0].name);
}

function parseProtocols(protocolsText) {
  var protocols = protocolsText.split(',');
  for (var i = 0; i < protocols.length; ++i) {
    protocols[i] = protocols[i].trim();
  }

  if (protocols.length == 0) {
    // Don't pass.
    protocols = null;
  } else if (protocols.length == 1) {
    if (protocols[0].length == 0) {
      // Don't pass.
      protocols = null;
    } else {
      // Pass as a string.
      protocols = protocols[0];
    }
  }

  return protocols;
}

function connect() {
  var url = addressBox.value;
  var protocols = parseProtocols(protocolsBox.value);

  if ('WebSocket' in window) {
    if (protocols) {
      socket = new WebSocket(url, protocols);
    } else {
      socket = new WebSocket(url);
    }
  } else {
    return;
  }

  socket.onopen = function () {
    var extraInfo = [];
    if (('protocol' in socket) && socket.protocol) {
      extraInfo.push('protocol = ' + socket.protocol);
    }
    if (('extensions' in socket) && socket.extensions) {
      extraInfo.push('extensions = ' + socket.extensions);
    }

    var logMessage = 'Opened';
    if (extraInfo.length > 0) {
      logMessage += ' (' + extraInfo.join(', ') + ')';
    }
    addToLog(logMessage);
  };
  socket.onmessage = function (event) {
    if (('ArrayBuffer' in window) && (event.data instanceof ArrayBuffer)) {
      addToLog('< Received an ArrayBuffer of ' + event.data.byteLength +
               ' bytes')
    } else if (('Blob' in window) && (event.data instanceof Blob)) {
      addToLog('< Received a Blob of ' + event.data.size + ' bytes')
    } else {
      addToLog('< ' + event.data);
    }
  };
  socket.onerror = function () {
    addToLog('Error');
  };
  socket.onclose = function (event) {
    var logMessage = 'Closed (';
    if ((arguments.length == 1) && ('CloseEvent' in window) &&
        (event instanceof CloseEvent)) {
      logMessage += 'wasClean = ' + event.wasClean;
      // code and reason are present only for
      // draft-ietf-hybi-thewebsocketprotocol-06 and later
      if ('code' in event) {
        logMessage += ', code = ' + event.code;
      }
      if ('reason' in event) {
        logMessage += ', reason = ' + event.reason;
      }
    } else {
      logMessage += 'CloseEvent is not available';
    }
    addToLog(logMessage + ')');
  };

  if (protocols) {
    addToLog('Connect ' + url + ' (protocols = ' + protocols + ')');
  } else {
    addToLog('Connect ' + url);
  }
}

function closeSocket() {
  if (!socket) {
    addToLog('Not connected');
    return;
  }

  if (codeBox.value || reasonBox.value) {
    socket.close(codeBox.value, reasonBox.value);
  } else {
    socket.close();
  }
}

function printState() {
  if (!socket) {
    addToLog('Not connected');
    return;
  }

  addToLog(
      'url = ' + socket.url +
      ', readyState = ' + socket.readyState +
      ', bufferedAmount = ' + socket.bufferedAmount);
}

function init() {
  var scheme = window.location.protocol == 'https:' ? 'wss://' : 'ws://';
  var defaultAddress = scheme + window.location.host + '/echo';

  addressBox = document.getElementById('address');
  protocolsBox = document.getElementById('protocols');
  logBox = document.getElementById('log');
  messageBox = document.getElementById('message');
  fileBox = document.getElementById('file');
  codeBox = document.getElementById('code');
  reasonBox = document.getElementById('reason');

  addressBox.value = defaultAddress;

  if (!('WebSocket' in window)) {
    addToLog('WebSocket is not available');
  }
}
</script>
<style type="text/css">
form {
  margin: 0px;
}

#connect_div, #log_div, #send_div, #sendfile_div, #close_div, #printstate_div {
  padding: 5px;
  margin: 5px;
  border-width: 0px 0px 0px 10px;
  border-style: solid;
  border-color: silver;
}
</style>
</head>
<body onload="init()">

<div>

<div id="connect_div">
  <form action="#" onsubmit="connect(); return false;">
    url <input type="text" id="address" size="40">
    <input type="submit" value="connect">
    <br/>
    protocols <input type="text" id="protocols" size="20">
  </form>
</div>

<div id="log_div">
  <textarea id="log" rows="10" cols="40" readonly></textarea>
  <br/>
  <input type="checkbox"
         name="showtimestamp"
         value="showtimestamp"
         onclick="showTimeStamp = this.checked">Show time stamp
</div>

<div id="send_div">
  <form action="#" onsubmit="send(); return false;">
    data <input type="text" id="message" size="40">
    <input type="submit" value="send">
  </form>
</div>

<div id="sendfile_div">
  <form action="#" onsubmit="sendfile(); return false;">
    <input type="file" id="file" size="40">
    <input type="submit" value="send file">
  </form>

  Set binaryType
  <input type="radio"
         name="binarytype"
         value="blob"
         onclick="setbinarytype('blob')" checked>blob
  <input type="radio"
         name="binarytype"
         value="arraybuffer"
         onclick="setbinarytype('arraybuffer')">arraybuffer
</div>

<div id="close_div">
  <form action="#" onsubmit="closeSocket(); return false;">
    code <input type="text" id="code" size="10">
    reason <input type="text" id="reason" size="20">
    <input type="submit" value="close">
  </form>
</div>

<div id="printstate_div">
  <input type="button" value="print state" onclick="printState();">
</div>

</div>

</body>
</html>