forked from CZSK-MicroHacks/MicroHack-GitHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_backend.http
More file actions
27 lines (22 loc) · 1.03 KB
/
test_backend.http
File metadata and controls
27 lines (22 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Backend Service API - REST Client Tests
# Variables for the Pet Service API
@baseUrlPets = http://localhost:8010
@baseUrlActivities = http://localhost:8020
@baseUrlAccessories = http://localhost:8030
###############################################################################
# HEALTH CHECK ENDPOINTS
###############################################################################
# @name healthCheckPets
# Test the health endpoint to verify database connectivity
# If database/container doesn't exist, it will be created automatically with sample data
GET {{baseUrlPets}}/health HTTP/1.1
###
# @name healthCheckActivities
# Test the health endpoint to verify database connectivity
# If database/container doesn't exist, it will be created automatically with sample data
GET {{baseUrlActivities}}/health HTTP/1.1
###
# @name healthCheckAccessories
# Test the health endpoint to verify database connectivity
# If database/container doesn't exist, it will be created automatically with sample data
GET {{baseUrlAccessories}}/health HTTP/1.1