2023-09-20 14:30:18 +00:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from selfprivacy_api.graphql.mutations.services_mutations import ServicesMutations
|
|
|
|
import selfprivacy_api.services as service_module
|
2023-09-29 11:52:26 +00:00
|
|
|
from selfprivacy_api.services.service import Service, ServiceStatus
|
2023-09-20 14:30:18 +00:00
|
|
|
|
|
|
|
import tests.test_graphql.test_api_backup
|
|
|
|
from tests.test_common import raw_dummy_service, dummy_service
|
|
|
|
from tests.common import generate_service_query
|
|
|
|
from tests.test_graphql.common import get_data
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
|
|
|
def only_dummy_service(dummy_service):
|
|
|
|
# because queries to services that are not really there error out
|
|
|
|
back_copy = service_module.services.copy()
|
|
|
|
service_module.services.clear()
|
|
|
|
service_module.services.append(dummy_service)
|
|
|
|
yield dummy_service
|
|
|
|
service_module.services.clear()
|
|
|
|
service_module.services.extend(back_copy)
|
|
|
|
|
|
|
|
|
|
|
|
API_START_MUTATION = """
|
|
|
|
mutation TestStartService($service_id: String!) {
|
|
|
|
services {
|
|
|
|
startService(serviceId: $service_id) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
service {
|
|
|
|
id
|
|
|
|
status
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
API_STOP_MUTATION = """
|
|
|
|
mutation TestStopService($service_id: String!) {
|
|
|
|
services {
|
|
|
|
stopService(serviceId: $service_id) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
service {
|
|
|
|
id
|
|
|
|
status
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
"""
|
|
|
|
API_SERVICES_QUERY = """
|
|
|
|
allServices {
|
|
|
|
id
|
|
|
|
status
|
2023-09-29 12:52:13 +00:00
|
|
|
isEnabled
|
2023-09-20 14:30:18 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2023-09-29 12:30:44 +00:00
|
|
|
def api_start(client, service: Service):
|
2023-09-20 14:30:18 +00:00
|
|
|
response = client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_START_MUTATION,
|
|
|
|
"variables": {"service_id": service.get_id()},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
2023-09-29 12:30:44 +00:00
|
|
|
def api_stop(client, service: Service):
|
2023-09-20 14:30:18 +00:00
|
|
|
response = client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_STOP_MUTATION,
|
|
|
|
"variables": {"service_id": service.get_id()},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
|
|
|
|
def api_all_services(authorized_client):
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={"query": generate_service_query([API_SERVICES_QUERY])},
|
|
|
|
)
|
|
|
|
data = get_data(response)
|
|
|
|
result = data["services"]["allServices"]
|
|
|
|
assert result is not None
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def api_service(authorized_client, service: Service):
|
|
|
|
id = service.get_id()
|
|
|
|
for _service in api_all_services(authorized_client):
|
|
|
|
if _service["id"] == id:
|
|
|
|
return _service
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_services(authorized_client, only_dummy_service):
|
2023-09-29 11:52:26 +00:00
|
|
|
services = api_all_services(authorized_client)
|
|
|
|
assert len(services) == 1
|
|
|
|
|
|
|
|
api_dummy_service = services[0]
|
|
|
|
assert api_dummy_service["id"] == "testservice"
|
|
|
|
assert api_dummy_service["status"] == ServiceStatus.ACTIVE.value
|
2023-09-29 12:52:13 +00:00
|
|
|
assert api_dummy_service["isEnabled"] is True
|
2023-09-29 12:30:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_stop_start(authorized_client, only_dummy_service):
|
|
|
|
dummy_service = only_dummy_service
|
|
|
|
|
|
|
|
api_dummy_service = api_all_services(authorized_client)[0]
|
|
|
|
assert api_dummy_service["status"] == ServiceStatus.ACTIVE.value
|
|
|
|
|
|
|
|
# attempting to start an already started service
|
|
|
|
api_start(authorized_client, dummy_service)
|
|
|
|
api_dummy_service = api_all_services(authorized_client)[0]
|
|
|
|
assert api_dummy_service["status"] == ServiceStatus.ACTIVE.value
|
|
|
|
|
|
|
|
api_stop(authorized_client, dummy_service)
|
|
|
|
api_dummy_service = api_all_services(authorized_client)[0]
|
|
|
|
assert api_dummy_service["status"] == ServiceStatus.INACTIVE.value
|
|
|
|
|
|
|
|
# attempting to stop an already stopped service
|
|
|
|
api_stop(authorized_client, dummy_service)
|
|
|
|
api_dummy_service = api_all_services(authorized_client)[0]
|
|
|
|
assert api_dummy_service["status"] == ServiceStatus.INACTIVE.value
|
|
|
|
|
|
|
|
api_start(authorized_client, dummy_service)
|
|
|
|
api_dummy_service = api_all_services(authorized_client)[0]
|
|
|
|
assert api_dummy_service["status"] == ServiceStatus.ACTIVE.value
|