Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vvarp/xk6-wamp

A k6 extension that adds support for WAMP protocol.
https://github.com/vvarp/xk6-wamp

k6 k6-extension xk6

Last synced: about 2 months ago
JSON representation

A k6 extension that adds support for WAMP protocol.

Awesome Lists containing this project

README

        

# xk6-wamp

This is a [WAMP protocol](https://wamp-proto.org) client library for [k6](https://go.k6.io/k6),
implemented as an extension using the [xk6](https://github.com/grafana/xk6) system.

It is based on [nexus WAMP client library](https://github.com/gammazero/nexus).

| :exclamation: This is a proof of concept, isn't supported by the k6 team, and may break in the future. USE AT YOUR OWN RISK! |
|------|

## Build

To build a `k6` binary with this extension, first ensure you have the prerequisites:

- [Go toolchain](https://go101.org/article/go-toolchain.html)
- Git

Then:

1. Install `xk6`:
```shell
go install go.k6.io/xk6/cmd/xk6@latest
```

2. Build the binary:
```shell
make build
```

## Example test script

```javascript
import wamp from 'k6/x/wamp';
import { sleep } from 'k6';

export default function () {
const client = new wamp.Client(
"ws://127.0.0.1:9000",
{
realm: "default",
}
);

const subId = client.subscribe("test", {}, function (args, kwargs) {
console.log(args, kwargs)
});

const sessId = client.getSessionID();
console.log(`Subscription ID: ${sessId} ${subId}`)

sleep(Math.random() * 2);

client.disconnect()
}
```