test(service): breakout raw api calls with ids

remove-rest
Houkime 2023-09-29 14:03:01 +00:00
parent 47cfaad160
commit bd43bdb335
1 changed files with 10 additions and 2 deletions

View File

@ -63,22 +63,30 @@ allServices {
def api_start(client, service: Service) -> dict:
return api_start_by_name(client, service.get_id())
def api_start_by_name(client, service_id: str) -> dict:
response = client.post(
"/graphql",
json={
"query": API_START_MUTATION,
"variables": {"service_id": service.get_id()},
"variables": {"service_id": service_id},
},
)
return response
def api_stop(client, service: Service) -> dict:
return api_stop_by_name(client, service.get_id())
def api_stop_by_name(client, service_id: str) -> dict:
response = client.post(
"/graphql",
json={
"query": API_STOP_MUTATION,
"variables": {"service_id": service.get_id()},
"variables": {"service_id": service_id},
},
)
return response