aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/websocket/test.html
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/websocket/test.html')
-rw-r--r--vespalib/src/tests/websocket/test.html70
1 files changed, 0 insertions, 70 deletions
diff --git a/vespalib/src/tests/websocket/test.html b/vespalib/src/tests/websocket/test.html
deleted file mode 100644
index f898cfb8da3..00000000000
--- a/vespalib/src/tests/websocket/test.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE html>
-<!-- Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
-
-<meta charset="utf-8" />
-
-<title>WebSocket Test</title>
-
-<script language="javascript" type="text/javascript">
-
- var wsUri = "ws://[SELF]/echo";
- var output;
-
- function init()
- {
- output = document.getElementById("output");
- testWebSocket();
- }
-
- function testWebSocket()
- {
- websocket = new WebSocket(wsUri);
- websocket.onopen = function(evt) { onOpen(evt) };
- websocket.onclose = function(evt) { onClose(evt) };
- websocket.onmessage = function(evt) { onMessage(evt) };
- websocket.onerror = function(evt) { onError(evt) };
- }
-
- function onOpen(evt)
- {
- writeToScreen("CONNECTED");
- doSend("WebSocket rocks");
- }
-
- function onClose(evt)
- {
- writeToScreen("DISCONNECTED");
- }
-
- function onMessage(evt)
- {
- writeToScreen('<span style="color: blue;">RESPONSE: ' + evt.data+'</span>');
- websocket.close();
- }
-
- function onError(evt)
- {
- writeToScreen('<span style="color: red;">ERROR:</span> ' + evt.data);
- }
-
- function doSend(message)
- {
- writeToScreen("SENT: " + message);
- websocket.send(message);
- }
-
- function writeToScreen(message)
- {
- var pre = document.createElement("p");
- pre.style.wordWrap = "break-word";
- pre.innerHTML = message;
- output.appendChild(pre);
- }
-
- window.addEventListener("load", init, false);
-
-</script>
-
-<h2>WebSocket Test</h2>
-
-<div id="output"></div>