diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2016-12-11 14:03:28 +0100 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2016-12-11 14:03:28 +0100 |
commit | 4beb63343f658a17b9ccd6236fced501e5d15dea (patch) | |
tree | f3a8f14a6b25ad82c958dd1192ced7a539ac1d4f /src/main/resources/static/test.html | |
parent | Add special action skeleton to finish wonders data parsing (diff) | |
download | seven-wonders-4beb63343f658a17b9ccd6236fced501e5d15dea.tar.gz seven-wonders-4beb63343f658a17b9ccd6236fced501e5d15dea.tar.bz2 seven-wonders-4beb63343f658a17b9ccd6236fced501e5d15dea.zip |
Add WS experiment test page
This pages allows to test spring/STOMP config to see which messages are properly broadcasted to all users, which are just sent to the caller, and which are sent a specific user from the server.
Diffstat (limited to 'src/main/resources/static/test.html')
-rw-r--r-- | src/main/resources/static/test.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/main/resources/static/test.html b/src/main/resources/static/test.html new file mode 100644 index 00000000..93c5d928 --- /dev/null +++ b/src/main/resources/static/test.html @@ -0,0 +1,45 @@ +<!DOCTYPE html> +<html> +<head> + <title>Seven Wonders</title> + <link href="/webjars/bootstrap/css/bootstrap.min.css" rel="stylesheet"> + <link href="/main.css" rel="stylesheet"> + <script src="/webjars/jquery/jquery.min.js"></script> + <script src="/webjars/sockjs-client/sockjs.min.js"></script> + <script src="/webjars/stomp-websocket/stomp.min.js"></script> + <script src="test-ws.js"></script> +</head> +<body> +<noscript> + <h2 style="color: #ff0000">Seems your browser doesn't support Javascript! Websocket relies on Javascript being + enabled. Please enable Javascript and reload this page!</h2> +</noscript> + +<h1>Seven Wonders Test Page</h1> + +<h2>WS messages tests</h2> + +<form class="form-inline"> + <div class="form-group"> + <label for="test-index-field">Send to /app/testX, with X in </label> + <input id="test-index-field"> + <button id="send-test" class="btn btn-default" type="submit">Send</button> + </div> +</form> + +<h2>Subscribed feeds</h2> + +<table class="table table-striped"> + <thead> + <tr> + <th>Endpoint</th> + <th>Data received</th> + </tr> + </thead> + <tbody id="test-feeds"> + </tbody> +</table> + + +</body> +</html>
\ No newline at end of file |