add test for checking service ready and health

This commit is contained in:
Viktor Scharf
2024-11-28 09:11:50 +05:45
committed by Prajwol Amatya
parent 46d397d74f
commit 18e0af90b7
7 changed files with 280 additions and 0 deletions
@@ -0,0 +1,15 @@
Feature: service health check
Scenario: health check defauts service
When a user requests these endpoints:
| endpoint | service |
| %base_url_without_scheme_and_port%:9304/healthz | collaboration |
Then the HTTP status code of responses on all endpoints should be "200"
Scenario: service ready check
When a user requests these endpoints:
| endpoint | service |
| %base_url_without_scheme_and_port%:9304/readyz | collaboration |
Then the HTTP status code of responses on all endpoints should be "200"