From d1792427f52932b2c4b343504adf93424745833c Mon Sep 17 00:00:00 2001 From: lahiruj Date: Mon, 3 Mar 2025 08:05:44 -0500 Subject: [PATCH 1/2] initial smoke test feature and setup --- docker-compose.yaml | 2 +- keycloak/Dockerfile | 3 +- tests/README.md | 98 +++++++++++++++++++++++++++ tests/requirements.txt | 2 + tests/smoke/__init__.py | 0 tests/smoke/config/settings_local.ini | 2 + tests/smoke/config/settings_prod.ini | 2 + tests/smoke/conftest.py | 24 +++++++ tests/smoke/test_health_check.py | 12 ++++ 9 files changed, 142 insertions(+), 3 deletions(-) create mode 100644 tests/README.md create mode 100644 tests/requirements.txt create mode 100644 tests/smoke/__init__.py create mode 100644 tests/smoke/config/settings_local.ini create mode 100644 tests/smoke/config/settings_prod.ini create mode 100644 tests/smoke/conftest.py create mode 100644 tests/smoke/test_health_check.py diff --git a/docker-compose.yaml b/docker-compose.yaml index 697f8f8..8010581 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -11,7 +11,7 @@ services: - 8080:8080 command: - start - - --optimized + - --health-enabled=true - --http-enabled - 'true' - --hostname-strict diff --git a/keycloak/Dockerfile b/keycloak/Dockerfile index 4456f80..101d860 100644 --- a/keycloak/Dockerfile +++ b/keycloak/Dockerfile @@ -1,4 +1,3 @@ -ARG KEYCLOAK_VERSION # Stage 1: Build the custom Service Provider Interfaces FROM maven:latest AS builder @@ -10,4 +9,4 @@ RUN ./build_and_collect_jars.sh FROM quay.io/keycloak/keycloak:${KEYCLOAK_VERSION} AS keycloak COPY --from=builder /workspace/.jars/*.jar /opt/keycloak/providers/ COPY themes /opt/keycloak/themes -RUN /opt/keycloak/bin/kc.sh build \ No newline at end of file +RUN /opt/keycloak/bin/kc.sh build --features=health --optimized \ No newline at end of file diff --git a/tests/README.md b/tests/README.md new file mode 100644 index 0000000..d8abf16 --- /dev/null +++ b/tests/README.md @@ -0,0 +1,98 @@ +# Keycloak Smoke Tests + +## Setup Instructions + +1. **Clone the Repository** + + If you haven't already, clone the repository: + + ```bash + git clone git@github.com:NASA-IMPACT/veda-keycloak.git + ``` + + Navigate to the project test directory: + + ```bash + cd veda-keycloak/tests + ``` + +2. **Create and Activate a Virtual Environment** + + It's recommended to use a virtual environment to manage dependencies. Create and activate one using the following + commands: + + - On **macOS/Linux**: + + ```bash + python3 -m venv venv + source venv/bin/activate + ``` + + - On **Windows**: + + ```bash + python -m venv venv + .\venv\Scripts\activate + ``` + +3. **Install Dependencies** + + With the virtual environment active, install the required Python packages: + + ```bash + pip install -r requirements.txt + ``` + +4. **Configure the Test Settings** + + Ensure that the `config/settings_.ini` file exists and is correctly set up. + +## Running the Tests + +1. **Run All Tests** + + Execute all tests using `pytest`: + + ```bash + pytest + ``` + + This command will discover and run all test files matching the pattern `test_*.py` or `*_test.py` within the current + directory and its subdirectories. + + +2. **Run a Specific Test File** + + To execute tests in a particular test file: + + ```bash + pytest smoke/test_health_check.py --env=prod + ``` + +3. **Run a Specific Test Function** + + To run a specific test function within a test file: + + ```bash + pytest smoke/test_health_check.py::test_keycloak_health_check --env=local + ``` + +## Additional Pytest Options + +- **Verbose Output**: For more detailed output, add the `-v` flag: + + ```bash + pytest -v + ``` + +- **Stop After First Failure**: To halt the test run after the first failure, use the `-x` option: + + ```bash + pytest -x + ``` + +- **Show Local Variables on Failure**: To display local variables in tracebacks, include the `-l` flag: + + ```bash + pytest -l + ``` \ No newline at end of file diff --git a/tests/requirements.txt b/tests/requirements.txt new file mode 100644 index 0000000..16d3b77 --- /dev/null +++ b/tests/requirements.txt @@ -0,0 +1,2 @@ +pytest +requests \ No newline at end of file diff --git a/tests/smoke/__init__.py b/tests/smoke/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/smoke/config/settings_local.ini b/tests/smoke/config/settings_local.ini new file mode 100644 index 0000000..f12fe98 --- /dev/null +++ b/tests/smoke/config/settings_local.ini @@ -0,0 +1,2 @@ +[server] +base_url = http://localhost:8080 \ No newline at end of file diff --git a/tests/smoke/config/settings_prod.ini b/tests/smoke/config/settings_prod.ini new file mode 100644 index 0000000..d08aeee --- /dev/null +++ b/tests/smoke/config/settings_prod.ini @@ -0,0 +1,2 @@ +[server] +base_url = https://auth.openveda.cloud \ No newline at end of file diff --git a/tests/smoke/conftest.py b/tests/smoke/conftest.py new file mode 100644 index 0000000..78b4436 --- /dev/null +++ b/tests/smoke/conftest.py @@ -0,0 +1,24 @@ +import configparser +import os +import pytest +from pathlib import Path + + +def pytest_addoption(parser): + parser.addoption("--env", action="store", default="local", help="Environment to run tests against") + + +@pytest.fixture(scope='session') +def config(pytestconfig): + env = pytestconfig.getoption("--env") + config_file = Path(__file__).parent / "config" / f"settings_{env}.ini" + + if not os.path.exists(config_file): + raise FileNotFoundError(f"Config file '{config_file}' not found!") + + parser = configparser.ConfigParser() + parser.read(config_file) + + print(f"Loaded config from {config_file}: {dict(parser.items('server'))}") + + return parser diff --git a/tests/smoke/test_health_check.py b/tests/smoke/test_health_check.py new file mode 100644 index 0000000..ded1d0f --- /dev/null +++ b/tests/smoke/test_health_check.py @@ -0,0 +1,12 @@ +import requests + + +def test_keycloak_health_check(config): + base_url = config['server']['base_url'] + endpoints = ['live', 'ready'] + for endpoint in endpoints: + url = f"{base_url}/health/{endpoint}" + response = requests.get(url) + assert response.status_code == 200, f"Expected status code 200 for /health/{endpoint}, got {response.status_code}" + json_response = response.json() + assert json_response.get("status") == "UP", f"Expected status 'UP' for /health/{endpoint}, got {json_response.get('status')}" From fb9b785b876b17aea0d5170a55ce2c87f5ff3ceb Mon Sep 17 00:00:00 2001 From: lahiruj Date: Thu, 20 Mar 2025 13:30:48 -0400 Subject: [PATCH 2/2] utilized uv to run tests and changes to tests --- docker-compose.yaml | 4 +- keycloak/Dockerfile | 4 +- pyproject.toml | 6 ++ tests/README.md | 45 +++------- tests/requirements.txt | 2 - tests/smoke/config/settings_local.ini | 2 - tests/smoke/config/settings_prod.ini | 2 - tests/smoke/conftest.py | 30 +++---- tests/smoke/test_health_check.py | 19 ++-- uv.lock | 119 ++++++++++++++++++++++++++ 10 files changed, 166 insertions(+), 67 deletions(-) delete mode 100644 tests/requirements.txt delete mode 100644 tests/smoke/config/settings_local.ini delete mode 100644 tests/smoke/config/settings_prod.ini diff --git a/docker-compose.yaml b/docker-compose.yaml index 8010581..7a295b3 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -11,7 +11,7 @@ services: - 8080:8080 command: - start - - --health-enabled=true + - --optimized - --http-enabled - 'true' - --hostname-strict @@ -22,7 +22,7 @@ services: path: ./keycloak keycloak-config-cli: - build: ./config + build: ./keycloak-config-cli depends_on: - keycloak environment: diff --git a/keycloak/Dockerfile b/keycloak/Dockerfile index 101d860..37f925a 100644 --- a/keycloak/Dockerfile +++ b/keycloak/Dockerfile @@ -1,3 +1,4 @@ +ARG KEYCLOAK_VERSION # Stage 1: Build the custom Service Provider Interfaces FROM maven:latest AS builder @@ -7,6 +8,7 @@ RUN ./build_and_collect_jars.sh # Stage 2: Build Keycloak with the SPIs and themes FROM quay.io/keycloak/keycloak:${KEYCLOAK_VERSION} AS keycloak +ENV KC_HEALTH_ENABLED=true COPY --from=builder /workspace/.jars/*.jar /opt/keycloak/providers/ COPY themes /opt/keycloak/themes -RUN /opt/keycloak/bin/kc.sh build --features=health --optimized \ No newline at end of file +RUN /opt/keycloak/bin/kc.sh build \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 4d0752b..5b764b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,3 +10,9 @@ dependencies = [ "pydantic-settings>=2.8.1", "pyyaml>=6.0.2", ] + +[tool.uv] +dev-dependencies = [ + "pytest>=6.0", + "requests>=2.25" +] \ No newline at end of file diff --git a/tests/README.md b/tests/README.md index d8abf16..8508b82 100644 --- a/tests/README.md +++ b/tests/README.md @@ -10,43 +10,20 @@ git clone git@github.com:NASA-IMPACT/veda-keycloak.git ``` - Navigate to the project test directory: + Navigate to the project directory: ```bash - cd veda-keycloak/tests + cd veda-keycloak ``` -2. **Create and Activate a Virtual Environment** +2. **Install Dependencies** - It's recommended to use a virtual environment to manage dependencies. Create and activate one using the following - commands: - - - On **macOS/Linux**: - - ```bash - python3 -m venv venv - source venv/bin/activate - ``` - - - On **Windows**: - - ```bash - python -m venv venv - .\venv\Scripts\activate - ``` - -3. **Install Dependencies** - - With the virtual environment active, install the required Python packages: + Using uv, install the required dependencies: ```bash - pip install -r requirements.txt + uv sync ``` -4. **Configure the Test Settings** - - Ensure that the `config/settings_.ini` file exists and is correctly set up. - ## Running the Tests 1. **Run All Tests** @@ -54,7 +31,7 @@ Execute all tests using `pytest`: ```bash - pytest + uv run pytest ``` This command will discover and run all test files matching the pattern `test_*.py` or `*_test.py` within the current @@ -66,7 +43,7 @@ To execute tests in a particular test file: ```bash - pytest smoke/test_health_check.py --env=prod + uv run pytest tests/smoke/test_health_check.py ``` 3. **Run a Specific Test Function** @@ -74,7 +51,7 @@ To run a specific test function within a test file: ```bash - pytest smoke/test_health_check.py::test_keycloak_health_check --env=local + uv run pytest tests/smoke/test_health_check.py::test_keycloak_health_check ``` ## Additional Pytest Options @@ -82,17 +59,17 @@ - **Verbose Output**: For more detailed output, add the `-v` flag: ```bash - pytest -v + uv run pytest -v ``` - **Stop After First Failure**: To halt the test run after the first failure, use the `-x` option: ```bash - pytest -x + uv run pytest -x ``` - **Show Local Variables on Failure**: To display local variables in tracebacks, include the `-l` flag: ```bash - pytest -l + uv run pytest -l ``` \ No newline at end of file diff --git a/tests/requirements.txt b/tests/requirements.txt deleted file mode 100644 index 16d3b77..0000000 --- a/tests/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -pytest -requests \ No newline at end of file diff --git a/tests/smoke/config/settings_local.ini b/tests/smoke/config/settings_local.ini deleted file mode 100644 index f12fe98..0000000 --- a/tests/smoke/config/settings_local.ini +++ /dev/null @@ -1,2 +0,0 @@ -[server] -base_url = http://localhost:8080 \ No newline at end of file diff --git a/tests/smoke/config/settings_prod.ini b/tests/smoke/config/settings_prod.ini deleted file mode 100644 index d08aeee..0000000 --- a/tests/smoke/config/settings_prod.ini +++ /dev/null @@ -1,2 +0,0 @@ -[server] -base_url = https://auth.openveda.cloud \ No newline at end of file diff --git a/tests/smoke/conftest.py b/tests/smoke/conftest.py index 78b4436..c10c18b 100644 --- a/tests/smoke/conftest.py +++ b/tests/smoke/conftest.py @@ -1,24 +1,24 @@ -import configparser import os import pytest -from pathlib import Path +from pydantic_settings import BaseSettings, SettingsConfigDict -def pytest_addoption(parser): - parser.addoption("--env", action="store", default="local", help="Environment to run tests against") +class Settings(BaseSettings): + hostname: str = os.getenv("HOSTNAME", "http://localhost:8080") + model_config = SettingsConfigDict( + env_file=".env", # Load from .env if available (only if HOSTNAME is not set) + extra="ignore" + ) -@pytest.fixture(scope='session') -def config(pytestconfig): - env = pytestconfig.getoption("--env") - config_file = Path(__file__).parent / "config" / f"settings_{env}.ini" - - if not os.path.exists(config_file): - raise FileNotFoundError(f"Config file '{config_file}' not found!") - parser = configparser.ConfigParser() - parser.read(config_file) +@pytest.fixture(scope='session') +def settings(): + """Returns an instance of Settings""" + return Settings() - print(f"Loaded config from {config_file}: {dict(parser.items('server'))}") - return parser +@pytest.fixture(scope='session') +def base_url(settings): + """Extracts base_url from settings""" + return settings.hostname diff --git a/tests/smoke/test_health_check.py b/tests/smoke/test_health_check.py index ded1d0f..90bae7c 100644 --- a/tests/smoke/test_health_check.py +++ b/tests/smoke/test_health_check.py @@ -1,12 +1,13 @@ +import pytest import requests -def test_keycloak_health_check(config): - base_url = config['server']['base_url'] - endpoints = ['live', 'ready'] - for endpoint in endpoints: - url = f"{base_url}/health/{endpoint}" - response = requests.get(url) - assert response.status_code == 200, f"Expected status code 200 for /health/{endpoint}, got {response.status_code}" - json_response = response.json() - assert json_response.get("status") == "UP", f"Expected status 'UP' for /health/{endpoint}, got {json_response.get('status')}" +@pytest.mark.parametrize("endpoint", ["live", "ready"]) +def test_keycloak_health_check(base_url, endpoint): + url = f"{base_url}/health/{endpoint}" + + response = requests.get(url) + assert response.status_code == 200, f"Expected status code 200 for /health/{endpoint}, got {response.status_code}" + + json_response = response.json() + assert json_response.get("status") == "UP", f"Expected status 'UP' for /health/{endpoint}, got {json_response.get('status')}" diff --git a/uv.lock b/uv.lock index aba4e97..74cec1d 100644 --- a/uv.lock +++ b/uv.lock @@ -1,4 +1,5 @@ version = 1 +revision = 1 requires-python = ">=3.13" [[package]] @@ -119,6 +120,46 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c8/d5/867e75361fc45f6de75fe277dd085627a9db5ebb511a87f27dc1396b5351/cattrs-24.1.2-py3-none-any.whl", hash = "sha256:67c7495b760168d931a10233f979b28dc04daf853b30752246f4f8471c6d68d0", size = 66446 }, ] +[[package]] +name = "certifi" +version = "2025.1.31" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda", size = 195698 }, + { url = "https://files.pythonhosted.org/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313", size = 140162 }, + { url = "https://files.pythonhosted.org/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9", size = 150263 }, + { url = "https://files.pythonhosted.org/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b", size = 142966 }, + { url = "https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11", size = 144992 }, + { url = "https://files.pythonhosted.org/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f", size = 147162 }, + { url = "https://files.pythonhosted.org/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd", size = 140972 }, + { url = "https://files.pythonhosted.org/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2", size = 149095 }, + { url = "https://files.pythonhosted.org/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886", size = 152668 }, + { url = "https://files.pythonhosted.org/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601", size = 150073 }, + { url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732 }, + { url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391 }, + { url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702 }, + { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, +] + [[package]] name = "constructs" version = "10.4.2" @@ -133,6 +174,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f2/d9/c5e7458f323bf063a9a54200742f2494e2ce3c7c6873e0ff80f88033c75f/constructs-10.4.2-py3-none-any.whl", hash = "sha256:1f0f59b004edebfde0f826340698b8c34611f57848139b7954904c61645f13c1", size = 63509 }, ] +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, +] + [[package]] name = "importlib-resources" version = "6.5.2" @@ -142,6 +192,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a4/ed/1f1afb2e9e7f38a545d628f864d562a5ae64fe6f7a10e28ffb9b185b4e89/importlib_resources-6.5.2-py3-none-any.whl", hash = "sha256:789cfdc3ed28c78b67a06acb8126751ced69a3d5f79c095a98298cd8a760ccec", size = 37461 }, ] +[[package]] +name = "iniconfig" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050 }, +] + [[package]] name = "jmespath" version = "1.0.1" @@ -169,6 +228,24 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a8/a9/02a69ba6ebcaa06e92e4fe9c1c19981be468fc24b0974983bc819e45eae4/jsii-1.108.0-py3-none-any.whl", hash = "sha256:d6c99671ab44520069ad6198e3b07379ae9c075bcb53b8a16455c1beb10288ea", size = 558058 }, ] +[[package]] +name = "packaging" +version = "24.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, +] + [[package]] name = "publication" version = "0.0.3" @@ -230,6 +307,21 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0b/53/a64f03044927dc47aafe029c42a5b7aabc38dfb813475e0e1bf71c4a59d0/pydantic_settings-2.8.1-py3-none-any.whl", hash = "sha256:81942d5ac3d905f7f3ee1a70df5dfb62d5569c12f51a5a647defc1c3d9ee2e9c", size = 30839 }, ] +[[package]] +name = "pytest" +version = "8.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ae/3c/c9d525a414d506893f0cd8a8d0de7706446213181570cdbd766691164e40/pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845", size = 1450891 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/30/3d/64ad57c803f1fa1e963a7946b6e0fea4a70df53c1a7fed304586539c2bac/pytest-8.3.5-py3-none-any.whl", hash = "sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820", size = 343634 }, +] + [[package]] name = "python-dateutil" version = "2.9.0.post0" @@ -268,6 +360,21 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, ] +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, +] + [[package]] name = "s3transfer" version = "0.11.3" @@ -327,6 +434,12 @@ dependencies = [ { name = "pyyaml" }, ] +[package.dev-dependencies] +dev = [ + { name = "pytest" }, + { name = "requests" }, +] + [package.metadata] requires-dist = [ { name = "aws-cdk-lib", specifier = ">=2.181.1" }, @@ -334,3 +447,9 @@ requires-dist = [ { name = "pydantic-settings", specifier = ">=2.8.1" }, { name = "pyyaml", specifier = ">=6.0.2" }, ] + +[package.metadata.requires-dev] +dev = [ + { name = "pytest", specifier = ">=6.0" }, + { name = "requests", specifier = ">=2.25" }, +]