forked from jmesnil/stomp-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 1.75 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Stomp Over Web Socket</title>
<link rel="stylesheet" href="qunit.css" media="screen" />
<link rel="stylesheet" href="test.css" media="screen" />
<script src="qunit.js"></script>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>
<script src="../lib/stomp.js"></script>
<!-- define all valid Test variables used by the tests -->
<script src="unit/config.js"></script>
<!-- check web socket support -->
<script src="unit/websocket.js"></script>
<!-- check Stomp frame marshalling -->
<script src="unit/frame.js"></script>
<!-- check connect method arguments -->
<script src="unit/parse_connect.js"></script>
<!-- check connection/disconnection -->
<script src="unit/connection.js"></script>
<!-- check send/receive messages -->
<script src="unit/message.js"></script>
<!-- check transactions -->
<script src="unit/transaction.js"></script>
<!-- check subscriptions -->
<script src="unit/subscription.js"></script>
<!-- check acknowledgement -->
<script src="unit/ack.js"></script>
</head>
<body>
<section>
<h1 id="qunit-header">Stomp Over Web Socket</h1>
<section>
<p>Tests requires that a Stomp Server accepting WebSocket protocol is running with the configuration:</p>
<ul>
<li>URL: <span id="test_url"></span>
<li>Destination: <span id="test_destination"></span>
<li>User: <span id="test_login"></span> / <span id="test_password"></span>
</ul>
<p>These values can be configured in <a href="unit/config.js">unit/config.js</a>
</section>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<pre id="debug"></pre>
</section>
</body>
</html>