index.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Stomp Over Web Socket</title>
  5. <link rel="stylesheet" href="qunit.css" media="screen" />
  6. <link rel="stylesheet" href="test.css" media="screen" />
  7. <script src="qunit.js"></script>
  8. <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>
  9. <script src="../lib/stomp.js"></script>
  10. <!-- define all valid Test variables used by the tests -->
  11. <script src="unit/config.js"></script>
  12. <!-- check web socket support -->
  13. <script src="unit/websocket.js"></script>
  14. <!-- check Stomp frame marshalling -->
  15. <script src="unit/frame.js"></script>
  16. <!-- check connect method arguments -->
  17. <script src="unit/parse_connect.js"></script>
  18. <!-- check connection/disconnection -->
  19. <script src="unit/connection.js"></script>
  20. <!-- check send/receive messages -->
  21. <script src="unit/message.js"></script>
  22. <!-- check transactions -->
  23. <script src="unit/transaction.js"></script>
  24. <!-- check subscriptions -->
  25. <script src="unit/subscription.js"></script>
  26. <!-- check acknowledgement -->
  27. <script src="unit/ack.js"></script>
  28. </head>
  29. <body>
  30. <section>
  31. <h1 id="qunit-header">Stomp Over Web Socket</h1>
  32. <section>
  33. <p>Tests requires that a Stomp Server accepting WebSocket protocol is running with the configuration:</p>
  34. <ul>
  35. <li>URL: <span id="test_url"></span>
  36. <li>Destination: <span id="test_destination"></span>
  37. <li>User: <span id="test_login"></span> / <span id="test_password"></span>
  38. </ul>
  39. <p>These values can be configured in <a href="unit/config.js">unit/config.js</a>
  40. </section>
  41. <h2 id="qunit-banner"></h2>
  42. <h2 id="qunit-userAgent"></h2>
  43. <ol id="qunit-tests"></ol>
  44. <pre id="debug"></pre>
  45. </section>
  46. </body>
  47. </html>