request3.http 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. @exampleServer=localhost:9500
  2. ###
  3. ### Simple WebSocket Request
  4. // It is possible to send messages to server right from the Services tool window
  5. WEBSOCKET ws://{{exampleServer}}/ws
  6. ### Request with client messages
  7. // It is possible to specify client messages in request body. Use '===' to separate messages.
  8. // Add '=== wait-for-server' above a message to send it after a server response is received.
  9. // To wait for N responses, add '=== wait-for-server' N times.
  10. WEBSOCKET ws://{{exampleServer}}/app/service
  11. Content-Type: application/json // We use it for highlighting
  12. {
  13. "message": "Hello, server!",
  14. "repeat": 3
  15. }
  16. ### Requests with scripts
  17. // Also, we can use scripts for sending messages to server and verifying messages from the server.
  18. WEBSOCKET ws://{{exampleServer}}/app/service
  19. Content-Type: application/json
  20. {
  21. "message": "Beginning message"
  22. }
  23. > {%
  24. var i = 0
  25. response.body.onEachMessage((message, unsubscribe, output) => {
  26. i++
  27. debugger
  28. const jsonMessage = JSON.parse(message); // We know that our sample server returns JSON
  29. client.test("Server sent a JSON with 'message' property: " + i, () => {
  30. client.assert(jsonMessage.message !== undefined)
  31. });
  32. if (jsonMessage.message.includes("finish")) {
  33. unsubscribe() // remove current listener
  34. return
  35. }
  36. if (i === 5) {
  37. output(JSON.stringify({
  38. message: "finish"
  39. }));
  40. } else {
  41. output(JSON.stringify({
  42. message: "Message from the script: " + i
  43. }));
  44. }
  45. }, () => {
  46. client.log("We stopped listening for WebSocket from the current 'onEachMessage' call!")
  47. });
  48. %}