santize service health and reasy url

This commit is contained in:
amrita
2024-12-31 15:06:16 +05:45
parent 3011eaa515
commit acc993ab36
6 changed files with 147 additions and 106 deletions
@@ -2,14 +2,14 @@ Feature: service health check
Scenario: check service health
When a user requests these endpoints with "GET" and no authentication
| endpoint | service |
| %base_url_hostname%:9174/healthz | notification |
When a user requests these URLs with "GET" and no authentication
| endpoint | service |
| http://%base_url_hostname%:9174/healthz | notification |
Then the HTTP status code of responses on all endpoints should be "200"
Scenario: check service readiness
When a user requests these endpoints with "GET" and no authentication
| endpoint | service |
| %base_url_hostname%:9174/readyz | notification |
When a user requests these URLs with "GET" and no authentication
| endpoint | service |
| http://%base_url_hostname%:9174/readyz | notification |
Then the HTTP status code of responses on all endpoints should be "200"