Releases: lamoda/gonkey
Releases · lamoda/gonkey
v1.1.1
v1.1.0
v1.0.10
v1.0.9: load env file in runner_testing (#54)
When we use Gonkey as a library, we may also want to use env-file. Also here is little cleanup of env-file loading in main.go
v1.0.7
add upload files support (#51) To upload file with test request you need to specify names and paths of files. Don't forget specify Content-Type: > Content-Type: multipart/form-data Example: - name: "upload-files" method: POST form: files: file1: "testdata/upload-files/file1.txt" file2: "testdata/upload-files/file2.log" headers: # case-sensitive, can be omitted Content-Type: multipart/form-data response: 200: | { "status": "OK" }
v1.0.6: don't follow redirects (#50)
New features:
- Extract a fragment of JSON-encoded server response and store it as a variable value
- Inject environment variables or previously extracted data into test definition
Fixes and improvements:
- Stop following redirects while requesting the server
- Updated dependencies
v1.0.5: Added support for assert response headers (#45)
Co-authored-by: Alexander Krüger <alexander.krueger@invia.de>