2022-07-05 05:14:37 +00:00
|
|
|
# pylint: disable=redefined-outer-name
|
|
|
|
# pylint: disable=unused-argument
|
|
|
|
# pylint: disable=missing-function-docstring
|
2022-07-11 13:42:51 +00:00
|
|
|
import os
|
2022-07-05 05:14:37 +00:00
|
|
|
import pytest
|
|
|
|
|
2022-08-01 10:40:40 +00:00
|
|
|
from tests.common import generate_system_query, read_json
|
2023-01-06 09:54:07 +00:00
|
|
|
from tests.test_graphql.common import assert_empty
|
2023-12-25 13:49:36 +00:00
|
|
|
from tests.test_dkim import no_dkim_file, dkim_file
|
2022-07-05 05:14:37 +00:00
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def turned_on(mocker, datadir):
|
|
|
|
mocker.patch("selfprivacy_api.utils.USERDATA_FILE", new=datadir / "turned_on.json")
|
|
|
|
assert read_json(datadir / "turned_on.json")["autoUpgrade"]["enable"] == True
|
|
|
|
assert read_json(datadir / "turned_on.json")["autoUpgrade"]["allowReboot"] == True
|
2024-01-09 18:58:09 +00:00
|
|
|
assert read_json(datadir / "turned_on.json")["timezone"] == "Etc/UTC"
|
2022-07-05 05:14:37 +00:00
|
|
|
return datadir
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def turned_off(mocker, datadir):
|
|
|
|
mocker.patch("selfprivacy_api.utils.USERDATA_FILE", new=datadir / "turned_off.json")
|
|
|
|
assert read_json(datadir / "turned_off.json")["autoUpgrade"]["enable"] == False
|
|
|
|
assert read_json(datadir / "turned_off.json")["autoUpgrade"]["allowReboot"] == False
|
2024-01-09 18:58:09 +00:00
|
|
|
assert read_json(datadir / "turned_off.json")["timezone"] == "Etc/UTC"
|
2022-07-05 05:14:37 +00:00
|
|
|
return datadir
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def undefined_config(mocker, datadir):
|
|
|
|
mocker.patch("selfprivacy_api.utils.USERDATA_FILE", new=datadir / "undefined.json")
|
|
|
|
assert "autoUpgrade" not in read_json(datadir / "undefined.json")
|
|
|
|
assert "timezone" not in read_json(datadir / "undefined.json")
|
|
|
|
return datadir
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def no_values(mocker, datadir):
|
|
|
|
mocker.patch("selfprivacy_api.utils.USERDATA_FILE", new=datadir / "no_values.json")
|
|
|
|
assert "enable" not in read_json(datadir / "no_values.json")["autoUpgrade"]
|
|
|
|
assert "allowReboot" not in read_json(datadir / "no_values.json")["autoUpgrade"]
|
|
|
|
return datadir
|
|
|
|
|
|
|
|
|
|
|
|
class ProcessMock:
|
|
|
|
"""Mock subprocess.Popen"""
|
|
|
|
|
|
|
|
def __init__(self, args, **kwargs):
|
|
|
|
self.args = args
|
|
|
|
self.kwargs = kwargs
|
|
|
|
|
2022-08-01 10:40:40 +00:00
|
|
|
def communicate(): # pylint: disable=no-method-argument
|
2022-07-05 05:14:37 +00:00
|
|
|
return (b"", None)
|
|
|
|
|
|
|
|
returncode = 0
|
|
|
|
|
|
|
|
|
|
|
|
class BrokenServiceMock(ProcessMock):
|
2022-07-07 11:49:04 +00:00
|
|
|
"""Mock subprocess.Popen for broken service"""
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-08-01 10:40:40 +00:00
|
|
|
def communicate(): # pylint: disable=no-method-argument
|
2022-07-05 05:14:37 +00:00
|
|
|
return (b"Testing error", None)
|
|
|
|
|
|
|
|
returncode = 3
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def mock_subprocess_popen(mocker):
|
|
|
|
mock = mocker.patch("subprocess.Popen", autospec=True, return_value=ProcessMock)
|
|
|
|
return mock
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def mock_os_chdir(mocker):
|
|
|
|
mock = mocker.patch("os.chdir", autospec=True)
|
|
|
|
return mock
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def mock_broken_service(mocker):
|
|
|
|
mock = mocker.patch(
|
|
|
|
"subprocess.Popen", autospec=True, return_value=BrokenServiceMock
|
|
|
|
)
|
|
|
|
return mock
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def mock_subprocess_check_output(mocker):
|
|
|
|
mock = mocker.patch(
|
|
|
|
"subprocess.check_output", autospec=True, return_value=b"Testing Linux"
|
|
|
|
)
|
|
|
|
return mock
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def mock_get_ip4(mocker):
|
2022-07-07 13:53:19 +00:00
|
|
|
mock = mocker.patch(
|
|
|
|
"selfprivacy_api.utils.network.get_ip4",
|
|
|
|
autospec=True,
|
|
|
|
return_value="157.90.247.192",
|
|
|
|
)
|
2022-07-05 05:14:37 +00:00
|
|
|
return mock
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def mock_get_ip6(mocker):
|
2022-07-07 13:53:19 +00:00
|
|
|
mock = mocker.patch(
|
|
|
|
"selfprivacy_api.utils.network.get_ip6",
|
|
|
|
autospec=True,
|
|
|
|
return_value="fe80::9400:ff:fef1:34ae",
|
|
|
|
)
|
2022-07-05 05:14:37 +00:00
|
|
|
return mock
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def mock_dkim_key(mocker):
|
2022-07-07 13:53:19 +00:00
|
|
|
mock = mocker.patch(
|
|
|
|
"selfprivacy_api.utils.get_dkim_key",
|
|
|
|
autospec=True,
|
|
|
|
return_value="I am a DKIM key",
|
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
return mock
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
|
|
|
|
API_PYTHON_VERSION_INFO = """
|
|
|
|
info {
|
|
|
|
pythonVersion
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-11 13:42:51 +00:00
|
|
|
def test_graphql_get_python_version_wrong_auth(
|
|
|
|
wrong_auth_client, mock_subprocess_check_output
|
|
|
|
):
|
2022-07-05 05:14:37 +00:00
|
|
|
"""Test wrong auth"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = wrong_auth_client.post(
|
2022-07-05 05:14:37 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_PYTHON_VERSION_INFO]),
|
|
|
|
},
|
|
|
|
)
|
2023-01-06 09:54:07 +00:00
|
|
|
assert_empty(response)
|
2022-07-05 05:14:37 +00:00
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-11 13:42:51 +00:00
|
|
|
def test_graphql_get_python_version(authorized_client, mock_subprocess_check_output):
|
|
|
|
"""Test get python version"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-11 13:42:51 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_PYTHON_VERSION_INFO]),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
|
|
|
assert response.json()["data"]["system"]["info"]["pythonVersion"] == "Testing Linux"
|
2022-07-11 13:42:51 +00:00
|
|
|
assert mock_subprocess_check_output.call_count == 1
|
|
|
|
assert mock_subprocess_check_output.call_args[0][0] == ["python", "-V"]
|
|
|
|
|
|
|
|
|
|
|
|
API_SYSTEM_VERSION_INFO = """
|
|
|
|
info {
|
|
|
|
systemVersion
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_get_system_version_unauthorized(
|
|
|
|
wrong_auth_client, mock_subprocess_check_output
|
|
|
|
):
|
|
|
|
"""Test wrong auth"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = wrong_auth_client.post(
|
2022-07-11 13:42:51 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_SYSTEM_VERSION_INFO]),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2023-01-06 09:54:07 +00:00
|
|
|
assert_empty(response)
|
2022-07-11 13:42:51 +00:00
|
|
|
|
|
|
|
assert mock_subprocess_check_output.call_count == 0
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_get_system_version(authorized_client, mock_subprocess_check_output):
|
|
|
|
"""Test get system version"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-11 13:42:51 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_SYSTEM_VERSION_INFO]),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-11 13:42:51 +00:00
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json()["data"]["system"]["info"]["systemVersion"] == "Testing Linux"
|
2022-07-11 13:42:51 +00:00
|
|
|
assert mock_subprocess_check_output.call_count == 1
|
|
|
|
assert mock_subprocess_check_output.call_args[0][0] == ["uname", "-a"]
|
|
|
|
|
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
API_GET_DOMAIN_INFO = """
|
2022-07-07 11:49:04 +00:00
|
|
|
domainInfo {
|
2022-07-05 05:14:37 +00:00
|
|
|
domain
|
|
|
|
hostname
|
|
|
|
provider
|
|
|
|
requiredDnsRecords {
|
2022-08-25 17:03:56 +00:00
|
|
|
recordType
|
2022-07-05 05:14:37 +00:00
|
|
|
name
|
|
|
|
content
|
|
|
|
ttl
|
|
|
|
priority
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
def dns_record(
|
|
|
|
record_type="A", name="test-domain.tld", content=None, ttl=3600, priority=None
|
|
|
|
):
|
2022-07-05 05:14:37 +00:00
|
|
|
if content is None:
|
2022-08-25 17:03:56 +00:00
|
|
|
if record_type == "A":
|
2022-07-05 05:14:37 +00:00
|
|
|
content = "157.90.247.192"
|
2022-08-25 17:03:56 +00:00
|
|
|
elif record_type == "AAAA":
|
2022-07-05 05:14:37 +00:00
|
|
|
content = "fe80::9400:ff:fef1:34ae"
|
|
|
|
return {
|
2022-08-25 17:03:56 +00:00
|
|
|
"recordType": record_type,
|
2022-07-05 05:14:37 +00:00
|
|
|
"name": name,
|
|
|
|
"content": content,
|
|
|
|
"ttl": ttl,
|
|
|
|
"priority": priority,
|
|
|
|
}
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 12:54:21 +00:00
|
|
|
def is_dns_record_in_array(records, dns_record) -> bool:
|
|
|
|
for record in records:
|
2022-07-07 13:53:19 +00:00
|
|
|
if (
|
2022-08-25 17:03:56 +00:00
|
|
|
record["recordType"] == dns_record["recordType"]
|
2022-07-07 13:53:19 +00:00
|
|
|
and record["name"] == dns_record["name"]
|
|
|
|
and record["content"] == dns_record["content"]
|
|
|
|
and record["ttl"] == dns_record["ttl"]
|
|
|
|
and record["priority"] == dns_record["priority"]
|
|
|
|
):
|
2022-07-05 12:54:21 +00:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
|
|
|
def test_graphql_get_domain(
|
2024-01-09 18:58:09 +00:00
|
|
|
authorized_client, mock_get_ip4, mock_get_ip6, turned_on, mock_dkim_key
|
2022-07-07 13:53:19 +00:00
|
|
|
):
|
2022-07-05 05:14:37 +00:00
|
|
|
"""Test get domain"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-05 05:14:37 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_GET_DOMAIN_INFO]),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2024-01-09 18:58:09 +00:00
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["domainInfo"]["domain"] == "test-domain.tld"
|
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["domainInfo"]["hostname"] == "test-instance"
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["domainInfo"]["provider"] == "CLOUDFLARE"
|
|
|
|
dns_records = response.json()["data"]["system"]["domainInfo"]["requiredDnsRecords"]
|
2022-07-05 12:54:21 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record())
|
2022-08-25 17:03:56 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(record_type="AAAA"))
|
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(name="api"))
|
2022-07-07 13:53:19 +00:00
|
|
|
assert is_dns_record_in_array(
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_records, dns_record(name="api", record_type="AAAA")
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(name="cloud"))
|
2022-07-07 13:53:19 +00:00
|
|
|
assert is_dns_record_in_array(
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_records, dns_record(name="cloud", record_type="AAAA")
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(name="git"))
|
2022-07-07 13:53:19 +00:00
|
|
|
assert is_dns_record_in_array(
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_records, dns_record(name="git", record_type="AAAA")
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(name="meet"))
|
2022-07-07 13:53:19 +00:00
|
|
|
assert is_dns_record_in_array(
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_records, dns_record(name="meet", record_type="AAAA")
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(name="password"))
|
2022-07-07 13:53:19 +00:00
|
|
|
assert is_dns_record_in_array(
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_records, dns_record(name="password", record_type="AAAA")
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(name="social"))
|
2022-07-07 13:53:19 +00:00
|
|
|
assert is_dns_record_in_array(
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_records, dns_record(name="social", record_type="AAAA")
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
2022-08-25 17:03:56 +00:00
|
|
|
assert is_dns_record_in_array(dns_records, dns_record(name="vpn"))
|
2022-07-07 13:53:19 +00:00
|
|
|
assert is_dns_record_in_array(
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_records, dns_record(name="vpn", record_type="AAAA")
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
|
|
|
assert is_dns_record_in_array(
|
|
|
|
dns_records,
|
2022-08-25 17:03:56 +00:00
|
|
|
dns_record(
|
|
|
|
name="test-domain.tld",
|
|
|
|
record_type="MX",
|
|
|
|
content="test-domain.tld",
|
|
|
|
priority=10,
|
|
|
|
),
|
2022-07-07 13:53:19 +00:00
|
|
|
)
|
|
|
|
assert is_dns_record_in_array(
|
|
|
|
dns_records,
|
|
|
|
dns_record(
|
2022-08-25 17:03:56 +00:00
|
|
|
name="_dmarc", record_type="TXT", content="v=DMARC1; p=none", ttl=18000
|
2022-07-07 13:53:19 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
assert is_dns_record_in_array(
|
|
|
|
dns_records,
|
|
|
|
dns_record(
|
2022-08-25 17:03:56 +00:00
|
|
|
name="test-domain.tld",
|
|
|
|
record_type="TXT",
|
2022-07-07 13:53:19 +00:00
|
|
|
content="v=spf1 a mx ip4:157.90.247.192 -all",
|
|
|
|
ttl=18000,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
assert is_dns_record_in_array(
|
|
|
|
dns_records,
|
|
|
|
dns_record(
|
2022-08-25 17:03:56 +00:00
|
|
|
name="selector._domainkey",
|
|
|
|
record_type="TXT",
|
2022-07-07 13:53:19 +00:00
|
|
|
content="I am a DKIM key",
|
|
|
|
ttl=18000,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2022-07-05 12:54:21 +00:00
|
|
|
|
2023-11-24 11:26:13 +00:00
|
|
|
def test_graphql_get_domain_no_dkim(
|
|
|
|
authorized_client,
|
|
|
|
mock_get_ip4,
|
|
|
|
mock_get_ip6,
|
2023-12-25 13:49:36 +00:00
|
|
|
no_dkim_file,
|
2023-11-24 11:26:13 +00:00
|
|
|
turned_on,
|
|
|
|
):
|
|
|
|
"""Test no DKIM file situation gets properly handled"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_GET_DOMAIN_INFO]),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert response.json().get("data") is not None
|
|
|
|
dns_records = response.json()["data"]["system"]["domainInfo"]["requiredDnsRecords"]
|
|
|
|
for record in dns_records:
|
|
|
|
if record["name"] == "selector._domainkey":
|
|
|
|
raise ValueError("unexpected record found:", record)
|
|
|
|
|
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
API_GET_TIMEZONE = """
|
|
|
|
settings {
|
|
|
|
timezone
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 12:11:41 +00:00
|
|
|
def test_graphql_get_timezone_unauthorized(client, turned_on):
|
2022-07-07 11:49:04 +00:00
|
|
|
"""Test get timezone without auth"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = client.post(
|
2022-07-05 05:14:37 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_GET_TIMEZONE]),
|
|
|
|
},
|
|
|
|
)
|
2023-01-06 09:54:07 +00:00
|
|
|
assert_empty(response)
|
2022-07-05 05:14:37 +00:00
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-05 05:14:37 +00:00
|
|
|
def test_graphql_get_timezone(authorized_client, turned_on):
|
|
|
|
"""Test get timezone"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-05 05:14:37 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_GET_TIMEZONE]),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2024-01-09 18:58:09 +00:00
|
|
|
assert response.json()["data"]["system"]["settings"]["timezone"] == "Etc/UTC"
|
2022-07-05 05:14:37 +00:00
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
|
|
|
def test_graphql_get_timezone_on_undefined(authorized_client, undefined_config):
|
2022-07-07 11:49:04 +00:00
|
|
|
"""Test get timezone when none is defined in config"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-07 11:49:04 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": generate_system_query([API_GET_TIMEZONE]),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2024-01-09 18:58:09 +00:00
|
|
|
assert response.json()["data"]["system"]["settings"]["timezone"] == "Etc/UTC"
|
2022-07-07 11:49:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
API_CHANGE_TIMEZONE_MUTATION = """
|
|
|
|
mutation changeTimezone($timezone: String!) {
|
2023-06-21 03:46:56 +00:00
|
|
|
system {
|
|
|
|
changeTimezone(timezone: $timezone) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
timezone
|
|
|
|
}
|
2022-07-07 11:49:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2022-07-07 13:53:19 +00:00
|
|
|
|
2022-07-07 11:49:04 +00:00
|
|
|
def test_graphql_change_timezone_unauthorized(client, turned_on):
|
|
|
|
"""Test change timezone without auth"""
|
|
|
|
response = client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_TIMEZONE_MUTATION,
|
|
|
|
"variables": {
|
2024-01-09 18:58:09 +00:00
|
|
|
"timezone": "Etc/UTC",
|
2022-07-07 11:49:04 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
2023-01-06 09:54:07 +00:00
|
|
|
assert_empty(response)
|
2022-07-07 11:49:04 +00:00
|
|
|
|
|
|
|
|
2022-07-08 15:28:08 +00:00
|
|
|
def test_graphql_change_timezone(authorized_client, turned_on):
|
|
|
|
"""Test change timezone"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_TIMEZONE_MUTATION,
|
|
|
|
"variables": {
|
|
|
|
"timezone": "Europe/Helsinki",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2023-06-21 03:46:56 +00:00
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["success"] is True
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["message"] is not None
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeTimezone"]["timezone"]
|
|
|
|
== "Europe/Helsinki"
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
assert read_json(turned_on / "turned_on.json")["timezone"] == "Europe/Helsinki"
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_timezone_on_undefined(authorized_client, undefined_config):
|
|
|
|
"""Test change timezone when none is defined in config"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_TIMEZONE_MUTATION,
|
|
|
|
"variables": {
|
|
|
|
"timezone": "Europe/Helsinki",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2023-06-21 03:46:56 +00:00
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["success"] is True
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["message"] is not None
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeTimezone"]["timezone"]
|
|
|
|
== "Europe/Helsinki"
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
|
|
|
read_json(undefined_config / "undefined.json")["timezone"] == "Europe/Helsinki"
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_timezone_without_timezone(authorized_client, turned_on):
|
|
|
|
"""Test change timezone without timezone"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_TIMEZONE_MUTATION,
|
|
|
|
"variables": {
|
|
|
|
"timezone": "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2023-06-21 03:46:56 +00:00
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["success"] is False
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["message"] is not None
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["code"] == 400
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["timezone"] is None
|
2024-01-09 18:58:09 +00:00
|
|
|
assert read_json(turned_on / "turned_on.json")["timezone"] == "Etc/UTC"
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_timezone_with_invalid_timezone(authorized_client, turned_on):
|
|
|
|
"""Test change timezone with invalid timezone"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_TIMEZONE_MUTATION,
|
|
|
|
"variables": {
|
|
|
|
"timezone": "Invlaid/Timezone",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2023-06-21 03:46:56 +00:00
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["success"] is False
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["message"] is not None
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["code"] == 400
|
|
|
|
assert response.json()["data"]["system"]["changeTimezone"]["timezone"] is None
|
2024-01-09 18:58:09 +00:00
|
|
|
assert read_json(turned_on / "turned_on.json")["timezone"] == "Etc/UTC"
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
API_GET_AUTO_UPGRADE_SETTINGS_QUERY = """
|
|
|
|
settings {
|
|
|
|
autoUpgrade {
|
2022-08-25 17:03:56 +00:00
|
|
|
enable
|
2022-07-08 15:28:08 +00:00
|
|
|
allowReboot
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_get_auto_upgrade_unauthorized(client, turned_on):
|
|
|
|
"""Test get auto upgrade settings without auth"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = client.post(
|
2022-07-08 15:28:08 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-08-25 17:03:56 +00:00
|
|
|
"query": generate_system_query([API_GET_AUTO_UPGRADE_SETTINGS_QUERY]),
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
2023-01-06 09:54:07 +00:00
|
|
|
assert_empty(response)
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_get_auto_upgrade(authorized_client, turned_on):
|
|
|
|
"""Test get auto upgrade settings"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-08 15:28:08 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-08-25 17:03:56 +00:00
|
|
|
"query": generate_system_query([API_GET_AUTO_UPGRADE_SETTINGS_QUERY]),
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["enable"] is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["allowReboot"]
|
|
|
|
is True
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_get_auto_upgrade_on_undefined(authorized_client, undefined_config):
|
|
|
|
"""Test get auto upgrade settings when none is defined in config"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-08 15:28:08 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-08-25 17:03:56 +00:00
|
|
|
"query": generate_system_query([API_GET_AUTO_UPGRADE_SETTINGS_QUERY]),
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["enable"] is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["allowReboot"]
|
|
|
|
is False
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_get_auto_upgrade_without_vlaues(authorized_client, no_values):
|
|
|
|
"""Test get auto upgrade settings without values"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-08 15:28:08 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-08-25 17:03:56 +00:00
|
|
|
"query": generate_system_query([API_GET_AUTO_UPGRADE_SETTINGS_QUERY]),
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["enable"] is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["allowReboot"]
|
|
|
|
is False
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_get_auto_upgrade_turned_off(authorized_client, turned_off):
|
|
|
|
"""Test get auto upgrade settings when turned off"""
|
2022-08-25 17:03:56 +00:00
|
|
|
response = authorized_client.post(
|
2022-07-08 15:28:08 +00:00
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-08-25 17:03:56 +00:00
|
|
|
"query": generate_system_query([API_GET_AUTO_UPGRADE_SETTINGS_QUERY]),
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2022-08-25 17:03:56 +00:00
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["enable"] is False
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["settings"]["autoUpgrade"]["allowReboot"]
|
|
|
|
is False
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
API_CHANGE_AUTO_UPGRADE_SETTINGS = """
|
|
|
|
mutation changeServerSettings($settings: AutoUpgradeSettingsInput!) {
|
2023-06-21 03:46:56 +00:00
|
|
|
system {
|
|
|
|
changeAutoUpgradeSettings(settings: $settings) {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
enableAutoUpgrade
|
|
|
|
allowReboot
|
|
|
|
}
|
2022-07-07 11:49:04 +00:00
|
|
|
}
|
2022-07-05 05:14:37 +00:00
|
|
|
}
|
|
|
|
"""
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_auto_upgrade_unauthorized(client, turned_on):
|
|
|
|
"""Test change auto upgrade settings without auth"""
|
|
|
|
response = client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {
|
|
|
|
"enableAutoUpgrade": True,
|
|
|
|
"allowReboot": True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
2023-01-06 09:54:07 +00:00
|
|
|
assert_empty(response)
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_auto_upgrade(authorized_client, turned_on):
|
|
|
|
"""Test change auto upgrade settings"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {
|
|
|
|
"enableAutoUpgrade": False,
|
|
|
|
"allowReboot": True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2023-06-21 03:46:56 +00:00
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["success"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["changeAutoUpgradeSettings"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"][
|
|
|
|
"enableAutoUpgrade"
|
|
|
|
]
|
2022-08-25 17:03:56 +00:00
|
|
|
is False
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
2023-06-21 03:46:56 +00:00
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["allowReboot"]
|
|
|
|
is True
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
assert read_json(turned_on / "turned_on.json")["autoUpgrade"]["enable"] is False
|
|
|
|
assert read_json(turned_on / "turned_on.json")["autoUpgrade"]["allowReboot"] is True
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_auto_upgrade_on_undefined(authorized_client, undefined_config):
|
|
|
|
"""Test change auto upgrade settings when none is defined in config"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {
|
|
|
|
"enableAutoUpgrade": False,
|
|
|
|
"allowReboot": True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2023-06-21 03:46:56 +00:00
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["success"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["changeAutoUpgradeSettings"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"][
|
|
|
|
"enableAutoUpgrade"
|
|
|
|
]
|
2022-08-25 17:03:56 +00:00
|
|
|
is False
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
2023-06-21 03:46:56 +00:00
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["allowReboot"]
|
|
|
|
is True
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
|
|
|
read_json(undefined_config / "undefined.json")["autoUpgrade"]["enable"] is False
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
read_json(undefined_config / "undefined.json")["autoUpgrade"]["allowReboot"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_auto_upgrade_without_vlaues(authorized_client, no_values):
|
|
|
|
"""Test change auto upgrade settings without values"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {
|
|
|
|
"enableAutoUpgrade": True,
|
|
|
|
"allowReboot": True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2023-06-21 03:46:56 +00:00
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["success"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["changeAutoUpgradeSettings"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"][
|
|
|
|
"enableAutoUpgrade"
|
|
|
|
]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["allowReboot"]
|
2022-08-25 17:03:56 +00:00
|
|
|
is True
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
|
|
|
assert read_json(no_values / "no_values.json")["autoUpgrade"]["enable"] is True
|
|
|
|
assert read_json(no_values / "no_values.json")["autoUpgrade"]["allowReboot"] is True
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_auto_upgrade_turned_off(authorized_client, turned_off):
|
|
|
|
"""Test change auto upgrade settings when turned off"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {
|
|
|
|
"enableAutoUpgrade": True,
|
|
|
|
"allowReboot": True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2023-06-21 03:46:56 +00:00
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["success"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["changeAutoUpgradeSettings"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"][
|
|
|
|
"enableAutoUpgrade"
|
|
|
|
]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["allowReboot"]
|
2022-08-25 17:03:56 +00:00
|
|
|
is True
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
|
|
|
assert read_json(turned_off / "turned_off.json")["autoUpgrade"]["enable"] is True
|
|
|
|
assert (
|
|
|
|
read_json(turned_off / "turned_off.json")["autoUpgrade"]["allowReboot"] is True
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_grphql_change_auto_upgrade_without_enable(authorized_client, turned_off):
|
|
|
|
"""Test change auto upgrade settings without enable"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {
|
|
|
|
"allowReboot": True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2023-06-21 03:46:56 +00:00
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["success"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["changeAutoUpgradeSettings"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"][
|
|
|
|
"enableAutoUpgrade"
|
|
|
|
]
|
2022-08-25 17:03:56 +00:00
|
|
|
is False
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
2023-06-21 03:46:56 +00:00
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["allowReboot"]
|
|
|
|
is True
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
assert read_json(turned_off / "turned_off.json")["autoUpgrade"]["enable"] is False
|
|
|
|
assert (
|
|
|
|
read_json(turned_off / "turned_off.json")["autoUpgrade"]["allowReboot"] is True
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_auto_upgrade_without_allow_reboot(
|
|
|
|
authorized_client, turned_off
|
|
|
|
):
|
|
|
|
"""Test change auto upgrade settings without allow reboot"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {
|
|
|
|
"enableAutoUpgrade": True,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2023-06-21 03:46:56 +00:00
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["success"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["changeAutoUpgradeSettings"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"][
|
|
|
|
"enableAutoUpgrade"
|
|
|
|
]
|
2022-08-25 17:03:56 +00:00
|
|
|
is True
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
2023-06-21 03:46:56 +00:00
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["allowReboot"]
|
|
|
|
is False
|
|
|
|
)
|
2022-07-08 15:28:08 +00:00
|
|
|
assert read_json(turned_off / "turned_off.json")["autoUpgrade"]["enable"] is True
|
|
|
|
assert (
|
|
|
|
read_json(turned_off / "turned_off.json")["autoUpgrade"]["allowReboot"] is False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def test_graphql_change_auto_upgrade_with_empty_input(authorized_client, turned_off):
|
|
|
|
"""Test change auto upgrade settings with empty input"""
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
|
|
|
"query": API_CHANGE_AUTO_UPGRADE_SETTINGS,
|
|
|
|
"variables": {
|
|
|
|
"settings": {},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2022-07-08 15:28:08 +00:00
|
|
|
assert (
|
2023-06-21 03:46:56 +00:00
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["success"]
|
|
|
|
is True
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["changeAutoUpgradeSettings"]["code"] == 200
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"][
|
|
|
|
"enableAutoUpgrade"
|
|
|
|
]
|
|
|
|
is False
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["changeAutoUpgradeSettings"]["allowReboot"]
|
2022-08-25 17:03:56 +00:00
|
|
|
is False
|
2022-07-08 15:28:08 +00:00
|
|
|
)
|
|
|
|
assert read_json(turned_off / "turned_off.json")["autoUpgrade"]["enable"] is False
|
|
|
|
assert (
|
|
|
|
read_json(turned_off / "turned_off.json")["autoUpgrade"]["allowReboot"] is False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-07-11 13:42:51 +00:00
|
|
|
API_PULL_SYSTEM_CONFIGURATION_MUTATION = """
|
2022-08-25 17:03:56 +00:00
|
|
|
mutation testPullSystemConfiguration {
|
2023-06-21 03:46:56 +00:00
|
|
|
system {
|
|
|
|
pullRepositoryChanges {
|
|
|
|
success
|
|
|
|
message
|
|
|
|
code
|
|
|
|
}
|
2022-07-08 15:28:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2022-07-11 13:42:51 +00:00
|
|
|
def test_graphql_pull_system_configuration_unauthorized(client, mock_subprocess_popen):
|
2022-07-08 15:28:08 +00:00
|
|
|
response = client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-07-11 13:42:51 +00:00
|
|
|
"query": API_PULL_SYSTEM_CONFIGURATION_MUTATION,
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2023-01-06 09:54:07 +00:00
|
|
|
assert_empty(response)
|
2022-07-08 15:28:08 +00:00
|
|
|
assert mock_subprocess_popen.call_count == 0
|
|
|
|
|
|
|
|
|
2022-07-11 13:42:51 +00:00
|
|
|
def test_graphql_pull_system_configuration(
|
|
|
|
authorized_client, mock_subprocess_popen, mock_os_chdir
|
|
|
|
):
|
|
|
|
current_dir = os.getcwd()
|
2022-07-08 15:28:08 +00:00
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-07-11 13:42:51 +00:00
|
|
|
"query": API_PULL_SYSTEM_CONFIGURATION_MUTATION,
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
2022-07-11 13:42:51 +00:00
|
|
|
|
2022-07-08 15:28:08 +00:00
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2023-06-21 03:46:56 +00:00
|
|
|
assert response.json()["data"]["system"]["pullRepositoryChanges"]["success"] is True
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["pullRepositoryChanges"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["pullRepositoryChanges"]["code"] == 200
|
2022-07-08 15:28:08 +00:00
|
|
|
|
2022-07-11 13:42:51 +00:00
|
|
|
assert mock_subprocess_popen.call_count == 1
|
|
|
|
assert mock_subprocess_popen.call_args[0][0] == ["git", "pull"]
|
|
|
|
assert mock_os_chdir.call_count == 2
|
|
|
|
assert mock_os_chdir.call_args_list[0][0][0] == "/etc/nixos"
|
|
|
|
assert mock_os_chdir.call_args_list[1][0][0] == current_dir
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
|
2022-07-11 13:42:51 +00:00
|
|
|
def test_graphql_pull_system_broken_repo(
|
|
|
|
authorized_client, mock_broken_service, mock_os_chdir
|
|
|
|
):
|
|
|
|
current_dir = os.getcwd()
|
2022-07-08 15:28:08 +00:00
|
|
|
|
|
|
|
response = authorized_client.post(
|
|
|
|
"/graphql",
|
|
|
|
json={
|
2022-07-11 13:42:51 +00:00
|
|
|
"query": API_PULL_SYSTEM_CONFIGURATION_MUTATION,
|
2022-07-08 15:28:08 +00:00
|
|
|
},
|
|
|
|
)
|
2022-07-11 13:42:51 +00:00
|
|
|
|
2022-07-08 15:28:08 +00:00
|
|
|
assert response.status_code == 200
|
2022-08-25 17:03:56 +00:00
|
|
|
assert response.json().get("data") is not None
|
2023-06-21 03:46:56 +00:00
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["pullRepositoryChanges"]["success"] is False
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
response.json()["data"]["system"]["pullRepositoryChanges"]["message"]
|
|
|
|
is not None
|
|
|
|
)
|
|
|
|
assert response.json()["data"]["system"]["pullRepositoryChanges"]["code"] == 500
|
2022-07-11 13:42:51 +00:00
|
|
|
|
|
|
|
assert mock_broken_service.call_count == 1
|
|
|
|
assert mock_os_chdir.call_count == 2
|
|
|
|
assert mock_os_chdir.call_args_list[0][0][0] == "/etc/nixos"
|
|
|
|
assert mock_os_chdir.call_args_list[1][0][0] == current_dir
|