Nital
Nital

Reputation: 6084

Not able to run a Taurus performance test on an existing API

After installing Taurus on Win 10 machine and creating a new file for performance testing my API:

perf-test-config.yml

execution:
- concurrency: 100
  ramp-up: 1m
  hold-for: 2m
  scenario: helloworld-api-perf-test

scenarios:
  quick-test:
    requests:
    - https://helloworld-api.cfapps.io

I get following error in log:

Error Log:

> bzt perf-test-config.yml
15:32:18 INFO: Taurus CLI Tool v1.11.0
15:32:18 INFO: Starting with configs: ['perf-test-config.yml']
15:32:18 INFO: Configuring...
15:32:18 INFO: Artifacts dir: C:\Users\chandeln\MY-WORK\helloworld-api\2018-03-29_15-32-18.609453
15:32:18 WARNING: at path 'execution.0.scenario': scenario 'helloworld-api-perf-test' is used but isn't defined
15:32:18 INFO: Preparing...
15:32:19 WARNING: Could not find location at path: helloworld-api-perf-test
15:32:19 ERROR: Config Error: Scenario 'helloworld-api-perf-test' not found in scenarios: dict_keys(['quick-test'])
15:32:19 INFO: Post-processing...
15:32:19 INFO: Artifacts dir: C:\Users\chandeln\MY-WORK\helloworld-api\2018-03-29_15-32-18.609453
15:32:19 WARNING: Done performing with code: 1

Upvotes: 1

Views: 1086

Answers (2)

Dmitri T
Dmitri T

Reputation: 168082

You have only quick-test under "scenarios" dictionary and in "execution" block you're trying to call something named helloworld-api-perf-test

So the options are in:

  1. Change scenario: helloworld-api-perf-test to scenario: quick-test
  2. Change quick-test: to helloworld-api-perf-test:

More information:

  1. Taurus Configuration Syntax
  2. Navigating your First Steps Using Taurus

Upvotes: 1

Ori Marko
Ori Marko

Reputation: 58772

As in taurus User Manual scenario in execution should be also under scenarios for example:

execution:
- concurrency: 100
  ramp-up: 1m
  hold-for: 2m
  scenario: helloworld-api-perf-test

scenarios:
  helloworld-api-perf-test:
    requests:
    - https://helloworld-api.cfapps.io

Upvotes: 2

Related Questions