xk6-websockets
xk6-websockets copied to clipboard
While #35 will add Blob support at some point, the current API automatically sets `binaryType` to `arraybuffer` and as of #64 warns hat this will not be done in the...
## What? Error out if binarytype was not set to arraybuffer. ## Why? This lets us stabalize this in k6 without finishign #35 ## Checklist - [ ] I have...
I want to model a scenario where I have a set of VUs issuing requests repeatedly over the _same_ websockets. It seems like this could be accomplished with something like:...
There are still some test (from the very late ones) that are failing. Unfortunately it isn't immediately obvious what they test or what is failing exactly so that will likely...
Connected [issue](https://github.com/grafana/k6/issues/2024) for the original k6 api: >Currently, if an error (like timeout) happens during the creation of the websocket, k6 will not emit `status=0` or tags `error` and `error_code`...
https://github.com/gorilla/websocket isn't exactly known for it's awesome performance an has for years been undermaintained in my (albeit small) experience with it. Quick goolge search finds us https://github.com/nhooyr/websocket - which is...
https://gist.github.com/andrew-delph/05a45f7f4293a85755df5fbd15ad26c1
# What? Add the possibility of sending application data with WebSocket.ping. The WebSocker [protocol says](https://www.rfc-editor.org/rfc/rfc6455#section-5.5.2): ``` [5.5.2](https://www.rfc-editor.org/rfc/rfc6455#section-5.5.2). Ping The Ping frame contains an opcode of 0x9. A Ping frame MAY...
The current specification API doesn't have a way to know if or when a message was actually send successfully (or not). like https://github.com/websockets/ws/blob/master/doc/ws.md#websocketsenddata-options-callback
# What? In #54, along with introducing the tests on the Windows platform, we found that the `TestLockingUpWithAThrow` was causing issues. After a quick investigation, we localized that the issue...