-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconftest.py
More file actions
81 lines (65 loc) · 2.92 KB
/
conftest.py
File metadata and controls
81 lines (65 loc) · 2.92 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# Sonar Scanner Python
# Copyright (C) 2011-2026 SonarSource Sàrl
# mailto:info AT sonarsource DOT com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful,
#
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
import os
import pytest
import pytest_docker.plugin as docker
from requests.exceptions import ConnectionError, HTTPError
from tests.its.utils.cli_client import CliClient
from tests.its.utils.sonarqube_client import SonarQubeClient
@pytest.fixture(scope="session")
def docker_compose_file(pytestconfig: pytest.Config):
return pytestconfig.rootpath / "tests/its/compose.yaml"
def check_health(sonarqube_client: SonarQubeClient) -> bool:
try:
return sonarqube_client.get_system_health()["health"] == "GREEN"
except (ConnectionError, HTTPError):
return False
if "SKIP_DOCKER" in os.environ:
from time import sleep
@pytest.fixture(scope="session")
def sonarqube_client() -> SonarQubeClient:
"""Ensure that sonarqube service is up and responsive."""
url = "http://localhost:9000"
sonarqube_client = SonarQubeClient(url)
while not check_health(sonarqube_client):
print("Waiting for SonarQube to be up")
sleep(10)
status = sonarqube_client.get_system_status()["status"]
assert status == "UP"
return sonarqube_client
else:
@pytest.fixture(scope="session")
def sonarqube_client(docker_ip: str, docker_services: docker.Services) -> SonarQubeClient:
"""Ensure that sonarqube service is up and responsive."""
port = docker_services.port_for("sonarqube", 9000)
url = f"http://{docker_ip}:{port}"
sonarqube_client = SonarQubeClient(url)
docker_services.wait_until_responsive(timeout=120.0, pause=5, check=lambda: check_health(sonarqube_client))
status = sonarqube_client.get_system_status()["status"]
assert status == "UP"
return sonarqube_client
def pytest_addoption(parser):
parser.addoption("--debug-its", action="store_true", default=False, help="run scanner")
@pytest.fixture
def is_debugging(pytestconfig) -> bool:
return pytestconfig.getoption("--debug-its")
@pytest.fixture
def cli(sonarqube_client: SonarQubeClient, is_debugging: bool, caplog: pytest.CaptureFixture) -> CliClient:
return CliClient(sonarqube_client, is_debugging, caplog)