-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
echo.feature
30 lines (26 loc) · 1.12 KB
/
echo.feature
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
@ignore
Feature: public test at
http://www.websocket.org/echo.html
Scenario: text messages
And def socket = karate.webSocket('ws://echo.websocket.org')
When socket.send('hello world!')
And listen 5000
Then match listenResult == 'hello world!'
When socket.send('another test')
And listen 5000
Then match listenResult == 'another test'
Scenario: binary message
And def socket = karate.webSocketBinary('ws://echo.websocket.org')
And bytes data = read('../upload/test.pdf')
When socket.sendBytes(data)
And listen (5000
# the result data-type is byte-array, but this comparison works
Then match listenResult == read('../upload/test.pdf')
Scenario: sub protocol
Given def demoBaseUrl = 'wss://subscriptions.graph.cool/v1/cizfapt9y2jca01393hzx96w9'
And def options = { subProtocol: 'graphql-subscriptions', headers: { Authorization: 'Bearer foo' } }
And def socket = karate.webSocket(demoBaseUrl, null, options)
And def txt = '{"type": "connection_init", "payload": {}}'
When socket.send(txt)
And listen 5000
Then match listenResult == { type: 'connection_ack' }