In this lab we are going to look at testing our application using test cases that are generated using the OAS(OpenAPI Spec). To accomplish this task we will be using a tool called Schemathesis.
Schemathesis is a tool for testing your web applications built with an Open API specifications. It reads the application schema and generates test cases which will ensure that your application is compliant with its schema. The nice thing about Schemathesis is that The application being test could be written in any language, the only thing you need is a valid API schema in a supported format. For more information on Schemathesis, you can check out the project page here.
We'll be using the Todo project that we created at the beginning of the series to test with. If you need a new copy of the project follow these steps:
- Clone the project:
https://github.com/redhat-appdev-practice/schemathesis-lab.git
- Generate the sources and make sure that the application runs without issue:
mvn spring-boot:run
- The first thing we're going to do is set up a virtual environment for our python packages:
pip install --user virtualenv
- Create a new virtual environment in your project folder:
python -m venv myvenv
- Activate your new virtual environment:
source myvenv/bin/activate
source myvenv/Scripts/activate
for Windows
- Install Schemathesis:
pip install schemathesis
- Ensure that the application is running (the tests will be run against the running application):
mvn spring-boot:run
- In our project we are using an OAS that is in a remote repo, Scemathesis allows you to run tests against both local
remote schemas.
-
For local:
schemathesis run todo.yaml --base-url http://localhost:8080
-
For remote:
schemathesis run https://raw.githubusercontent.com/redhat-appdev-practice/schemathesis-lab/master/todo.yaml --base-url http://localhost:8080
Note: there should be failures for both of these runs
-
- In order to fix the failing tests we need to stub out each of the endpoints that are declared in our OAS
- Add the following to the TodosApiController:
@Override public ResponseEntity<Void> createTodo( Todo todo, Boolean completed) { return new ResponseEntity<>(HttpStatus.valueOf(200); } @Override public ResponseEntity<Void> deleteTodo(String todoId) { return new ResponseEntity<>(HttpStatus.valueOf(200); } @Override public ResponseEntity<List<Todo>> getTodos( Boolean completed) { return new ResponseEntity<>(HttpStatus.valueOf(200); } @Override public ResponseEntity<Void> updateTodo(String todoId, Todo todo) { return new ResponseEntity<>(HttpStatus.valueOf(200); }
- Rerun the tests:
schemathesis run todo.yaml --base-url http://localhost:8080
- By default Schemathesis only tests that the response code is less than 500, but there are more options for test cases.
Runschemthesis run --help
to see more testing options, specifically the --checks option. - Rerun the tests using all available checks:
schemathesis run todo.yaml --checks all --base-url http://localhost:8080
- Update the TodosApiController methods to conform to the OAS:
@Override public ResponseEntity<Void> createTodo(@Valid Todo todo, @Valid Boolean completed) { return new ResponseEntity<>(HttpStatus.valueOf(201)); } @Override public ResponseEntity<Void> deleteTodo(String todoId) { return new ResponseEntity<>(HttpStatus.valueOf(204)); } @Override public ResponseEntity<List<Todo>> getTodos(@Valid Boolean completed) { return ResponseEntity.status(200).body(new ArrayList<Todo>() ); } @Override public ResponseEntity<Void> updateTodo(String todoId, Todo todo) { return new ResponseEntity<>(HttpStatus.valueOf(202)); }
- Run the tests one final time:
schemathesis run todo.yaml --checks all --base-url http://localhost:8080
- Schemathesis offers added functionality if you want to test a specific part of your application.
- Create python file test.py:
# test.py import schemathesis schema = schemathesis.from_path('./todo.yaml') schema.base_url = 'http://localhost:8080' @schema.parametrize() def test_time(case): response = case.call() assert response.elapsed.total_seconds() < 1
- This is an example to check that all endpoints execute in under a second