artillery-core
artillery-core copied to clipboard
artillery-core - deprecated
failed capture/match recorded in report as error without erroring out.
Hi I am trying to use artillery to test my socket.io server under artillery 1.6.0-2. I want to put query param while connecting to server. My artillery config file: ```...
Hi, In order to have a complete test, I needed to handle multi-responses with socketio on different channels. This pull-request adds the support of it. ### Here is some examples...
I had a json test script looked like this : ```json { "config": { "target": "ws://192.168.74.17:8000", "phases": [ { "duration": 1, "arrivalRate": 1 } ], "processor": "./laura_processor.js", "variables": { "channelId":...
I have a room-based real-time communication server that uses the URL path to specify the roomID and a URL query param `?id=` to specify a clientID. I've implemented it to...
If you use a capture, like the following, you can have multiple matches for the one regexp. ```yaml - regexp: name="names\[\]" value="(.)" flags: g group: 1 as: "names" ``` This...
Aren't you passing formData with read stream? Like this: ```javascript formData: { foo: { value: fs.createReadStream(filePath), options: { filename: fileName, contentType: 'application/octet-stream' } } } ``` This is how formData...
Love using artillery. Would love to use it with SignalR.
Add an engine that can be used to load test a server listening on a raw TCP socket, similar to the current socket.io support except that it simply uses Node.js's...
Variables can now be grouped into sequences that can be used together in a scenario. **PROBLEM**: When you want a set of variables to be used together on requests. For...