Created
June 14, 2017 10:11
-
-
Save akshaymohite/f4c5ed984195ac302d1ae5822e1c84f9 to your computer and use it in GitHub Desktop.
Websocket Test on Local on Rails ActionCable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8" /> | |
<title>WebSocket Test</title> | |
<script language="javascript" type="text/javascript"> | |
var wsUri = "ws://localhost:3000/cable"; | |
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("{\"command\":\"subscribe\",\"identifier\":\"{\\\"channel\\\":\\\"WebNotificationsChannel\\\"}\"}"); | |
doSend("{\"command\":\"message\",\"identifier\":\"{\\\"channel\\\":\\\"WebNotificationsChannel\\\"}\",\"data\":\"{\\\"message\\\":\\\"test\\\"}\"}"); | |
} | |
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> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment