Home

Awesome

swagger-to-locustfile

A CLI tool that creates locust.io tasks file (locustfile.py) from Swagger/OpenAPI Spec.

Requirements

Installation

Best option is:

  1. $ git clone https://github.com/DataGreed/swagger-to-locustfile.git
  2. $ cd swagger-to-locustfile
  3. $ npm -g install
  4. You are good to go.

Currently Supports

Future Plans / Open Issues

Usage

Basically:

$ swagger2locust /path/to/swagger.json > /tmp/locustfile.py

Or you can pipe the spec:

$ cat /path/to/spec.yaml | swagger2locust

Full Usage:

  Usage: swagger2locust [options] <file>

  Options:

    -h, --help         output usage information
    -V, --version      output the version number
    -m, --min <n>      minimum time, in milliseconds, that a simulated user will wait between executing each task (default: 1000).
    -x, --max <n>      maximum time, in milliseconds, that a simulated user will wait between executing each task (default: 3000).
    -H, --host <host>  The host attribute is a URL prefix (i.e. “http://google.com”) to the host that is to be loaded.

Custom Swagger/OAI fields

x-locust-import

You can add x-locust-import to your root node (same level as host field) to specify extra imports for your locust file. This is useful if you need access to an import when you write an expression in x-locust-value.

So for the following swagger spec:

<table> <tr><td>JSON</td><td>YAML</td></tr> <tr><td><pre> { "swagger" : "2.0", ... "host" : "subdomain.domain.tld", "x-locust-import" : ["time"], ... } </pre></td><td><pre> swagger: "2.0" ... host: "subdomain.domain.tld" x-locust-import: - "time" ... </pre></td></tr> </table> The `locustfile.py` will have the following imports:
from locust import HttpLocust, TaskSet, task
import time

class MyTaskSet(TaskSet):
...

x-locust-value

x-locust-value allows you to write a python expression that replaces the hardcoded default value of a field. Example:

The following spec file

<table> <tr><td>JSON</td><td>YAML</td></tr> <tr><td><pre> ... "paths" : { "/required/qs/params-with-x-locust-value" : { "get" : { "parameters" : [ { "name" : "sreq_timestamp_param", "in" : "query", "description" : "Some timestamp.", "required" : true, "type" : "number", "default" : 1455134652, "x-locust-value" : "str(int(time.time()))" } ] } } } ... </pre></td><td style="valign:top"><pre> ... paths: /required/qs/params-with-x-locust-value: get: parameters: - name: "req_timestamp_param" in: "query" description: "Some timestamp." required: true type: "number" default: 1455134652 x-locust-value: "str(int(time.time()))" ...

</pre></td></tr></table>

Will result in the following line in locustfile.py (x-locust-value overrrides default):

...
@task
    def get_required_qs_params_with_x_locust_value(self):
        self.client.get("/api/v1/required/qs/params-with-x-locust-value?some_required_timestamp_param={0}".format(str(int(time.time()))))
...

While omitting x-locust-value field will result in the following line:

...
@task
    def get_required_qs_params_without_x_locust_value(self):
        self.client.get("/api/v1/required/qs/params-with-x-locust-value?some_required_timestamp_param={0}".format("1455134652"))
...

Contribute

Thanks

License

ISC License (ISC)

Copyright (c) 2016, Liel Dulev

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.