Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b6538f9e91 | ||
|
|
b37b2e6e50 | ||
|
|
1babb52d09 | ||
|
|
63ee17d544 | ||
|
|
2e38bd2406 | ||
|
|
dc6f8a3e89 | ||
|
|
f28d3c4844 | ||
|
|
1cbcc1c19b | ||
|
|
a0e5c9dcca | ||
|
|
44b15cb21a | ||
|
|
f6ee9a3724 | ||
|
|
0829354cc4 | ||
|
|
a0d509a2a3 | ||
|
|
9b7b15a67e | ||
|
|
cd5b84b88e | ||
|
|
6d02f32ca5 | ||
|
|
57b396bcd3 | ||
|
|
093e538d5b | ||
|
|
b28ac6e803 | ||
|
|
6c66fe4e21 | ||
|
|
089a1287f8 | ||
|
|
0a5bd39801 | ||
|
|
683ee332d3 | ||
|
|
9df5032d44 | ||
|
|
4f6f33f36e | ||
|
|
10d43ce198 | ||
|
|
4f7b67203a | ||
|
|
a27e9e5763 | ||
|
|
fd0045d3e0 | ||
|
|
515f4bbeae | ||
|
|
ef31fb4b4e | ||
|
|
707f11f578 | ||
|
|
b1d34f8f0f | ||
|
|
565879dd52 | ||
|
|
0d0f430f6f | ||
|
|
5ac40b1ba5 | ||
|
|
fa4ff1f03c | ||
|
|
0a39151ba0 | ||
|
|
82a702db0c | ||
|
|
b886a7c147 | ||
|
|
4518a93a3a | ||
|
|
a8b7b59484 | ||
|
|
0e6941dccf | ||
|
|
a6428ccd29 | ||
|
|
655fdc4ee8 | ||
|
|
e031c549e5 | ||
|
|
49b6238b7d | ||
|
|
0549358fe1 | ||
|
|
33efbd1005 | ||
|
|
24126e4044 | ||
|
|
f3b6cdbc9e | ||
|
|
fa2554ef5f | ||
|
|
b21fd247c5 | ||
|
|
441a21204d | ||
|
|
f2a8581de2 | ||
|
|
3b05260323 | ||
|
|
369295b8ae | ||
|
|
95c78596e7 | ||
|
|
42e885edd5 | ||
|
|
bd4794d1c0 | ||
|
|
3dc412cd15 | ||
|
|
b8d88e6703 | ||
|
|
67bb88fbb4 | ||
|
|
c2e6a96c5d | ||
|
|
547a1b3a90 | ||
|
|
39baf9badc | ||
|
|
4a5b3b631f | ||
|
|
1431f455c1 | ||
|
|
eafc717045 | ||
|
|
9a9b7b2985 | ||
|
|
5b9573d499 | ||
|
|
50444af982 | ||
|
|
2f19fcc972 | ||
|
|
3bd65895ec | ||
|
|
5311d49fa6 | ||
|
|
703bb9521f | ||
|
|
8e47ebf4c6 | ||
|
|
9a800bf553 | ||
|
|
8c34534187 | ||
|
|
b1210bddf2 | ||
|
|
39b104383c | ||
|
|
beb2b5128e | ||
|
|
ce062be411 | ||
|
|
a381d45650 | ||
|
|
5c8cd841b6 | ||
|
|
34632980ba | ||
|
|
5393efc6cd | ||
|
|
e39fc96ac1 | ||
|
|
c1f4826d78 | ||
|
|
0315a33a3b | ||
|
|
5d33ec6091 | ||
|
|
9538e4d26d | ||
|
|
14b8d2798c | ||
|
|
d3cbb65bbc |
@@ -0,0 +1,58 @@
|
|||||||
|
---
|
||||||
|
description: After first branch push, provide copy-ready PR title and body
|
||||||
|
alwaysApply: true
|
||||||
|
---
|
||||||
|
|
||||||
|
# PR Title and Comment After First Push
|
||||||
|
|
||||||
|
The user creates pull requests manually. After the **first push** of a feature branch to remote in a session, always end your response with a copy-ready PR title and PR comment.
|
||||||
|
|
||||||
|
## When to provide it
|
||||||
|
|
||||||
|
- After the first successful `git push` (or `git push -u origin <branch>`) for a branch in the current task
|
||||||
|
- Do **not** create the PR with `gh pr create` unless explicitly asked
|
||||||
|
- On later pushes to the same branch, only repeat if the user asks or the change set meaningfully updates what the PR should say
|
||||||
|
|
||||||
|
## PR title
|
||||||
|
|
||||||
|
- Use a fitting version-bump prefix when changes touch `python_repositories/`:
|
||||||
|
- `[patch]` or `[fix]` — bug fix
|
||||||
|
- `[minor]` or `[feat]` — new feature
|
||||||
|
- `[major]` or `[breaking]` — breaking change
|
||||||
|
- Docs-, CI-, or test-only changes: no prefix required
|
||||||
|
- Keep the title concise and descriptive
|
||||||
|
|
||||||
|
## PR comment format
|
||||||
|
|
||||||
|
Provide two separate fenced code blocks the user can copy directly:
|
||||||
|
|
||||||
|
1. **PR title** — single line in a code block
|
||||||
|
2. **PR comment** — body with `## Summary` and `## Test plan` sections, checklist items reflecting what was actually run
|
||||||
|
|
||||||
|
Example structure:
|
||||||
|
|
||||||
|
````
|
||||||
|
PR title:
|
||||||
|
|
||||||
|
```
|
||||||
|
[minor] Short description of the change
|
||||||
|
```
|
||||||
|
|
||||||
|
PR comment:
|
||||||
|
|
||||||
|
```
|
||||||
|
## Summary
|
||||||
|
|
||||||
|
- Bullet points of what changed and why
|
||||||
|
|
||||||
|
## Test plan
|
||||||
|
|
||||||
|
- [x] Commands or checks that were run
|
||||||
|
```
|
||||||
|
````
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
|
||||||
|
- Match the repo PR template ([`.gitea/PULL_REQUEST_TEMPLATE.md`](.gitea/PULL_REQUEST_TEMPLATE.md))
|
||||||
|
- Be accurate: only mark test-plan items done if they were run
|
||||||
|
- Keep prose clear; the user copies this verbatim into Gitea
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
description: Unit test file naming and placement conventions
|
||||||
|
globs: tests/**/*.py
|
||||||
|
alwaysApply: false
|
||||||
|
---
|
||||||
|
|
||||||
|
# Test Organization
|
||||||
|
|
||||||
|
Unit tests use a one-to-one mapping between source modules and test files.
|
||||||
|
|
||||||
|
## Naming
|
||||||
|
|
||||||
|
- `python_repositories/<path>/<module>.py` → `tests/unit/<module>_test.py`
|
||||||
|
- Test files must end with `_test.py` (enforced by pre-commit `name-tests-test`)
|
||||||
|
|
||||||
|
## Placement
|
||||||
|
|
||||||
|
- Add tests to the existing `*_test.py` for the module under test
|
||||||
|
- Do not create cross-cutting test files (e.g. `structural_typing_test.py`); colocate with the relevant interface/adapter/config test file
|
||||||
|
- Shared fixtures → `tests/conftest.py`
|
||||||
|
- Module-specific helper classes → the matching test file
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
```
|
||||||
|
json_repository_interface.py → tests/unit/json_repository_interface_test.py
|
||||||
|
redis_adapter.py → tests/unit/redis_adapter_test.py
|
||||||
|
redis_config.py → tests/unit/redis_config_test.py
|
||||||
|
```
|
||||||
|
|
||||||
|
Integration tests live under `tests/integration/<backend>/` with the same `_test.py` suffix.
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
.git
|
||||||
|
.github
|
||||||
|
.gitea
|
||||||
|
.mypy_cache
|
||||||
|
.pytest_cache
|
||||||
|
.ruff_cache
|
||||||
|
.venv
|
||||||
|
__pycache__
|
||||||
|
*.pyc
|
||||||
|
.coverage
|
||||||
|
coverage-unit
|
||||||
|
coverage-integration
|
||||||
|
coverage.txt
|
||||||
|
dist
|
||||||
|
build
|
||||||
|
*.egg-info
|
||||||
@@ -7,3 +7,9 @@ MINIO_ACCESS_KEY=minioadmin
|
|||||||
MINIO_SECRET_KEY=minioadmin
|
MINIO_SECRET_KEY=minioadmin
|
||||||
MINIO_BUCKET=my-bucket
|
MINIO_BUCKET=my-bucket
|
||||||
MINIO_SECURE=false
|
MINIO_SECURE=false
|
||||||
|
MINIO_CREATE_BUCKET_IF_MISSING=true
|
||||||
|
|
||||||
|
# Postgres (requires postgres extra)
|
||||||
|
POSTGRES_URI=postgresql://localhost/mydb
|
||||||
|
POSTGRES_TABLE=users
|
||||||
|
POSTGRES_PRIMARY_KEY=id
|
||||||
|
|||||||
@@ -2,9 +2,11 @@
|
|||||||
|
|
||||||
If this PR changes files under `python_repositories/`, the **title must** start with one of:
|
If this PR changes files under `python_repositories/`, the **title must** start with one of:
|
||||||
|
|
||||||
- `[patch]` or `[fix]` — bug fix (0.3.1 → 0.3.2)
|
- `[patch]` or `[fix]` — bug fix (`1.2.3` → `1.2.4`)
|
||||||
- `[minor]` or `[feat]` — new feature (0.3.1 → 0.4.0)
|
- `[minor]` or `[feat]` — new feature (`1.2.3` → `1.3.0`)
|
||||||
- `[major]` or `[breaking]` — breaking change (0.3.1 → 1.0.0)
|
- `[major]` or `[breaking]` — breaking change (`1.2.3` → `2.0.0`)
|
||||||
|
|
||||||
|
Current version: see [`pyproject.toml`](pyproject.toml) on `main`.
|
||||||
|
|
||||||
Docs-, CI-, or test-only PRs do not need a prefix.
|
Docs-, CI-, or test-only PRs do not need a prefix.
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,52 @@
|
|||||||
|
# Build and publish the per-repo CI base image to the Gitea container registry.
|
||||||
|
|
||||||
|
name: Build CI Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 2 * * *"
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- pyproject.toml
|
||||||
|
- uv.lock
|
||||||
|
- docker/ci/**
|
||||||
|
|
||||||
|
env:
|
||||||
|
REGISTRY: gitea.lille-vemmelund.dk
|
||||||
|
REGISTRY_USER: ci-bot
|
||||||
|
IMAGE: gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-push:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Log in to Gitea container registry
|
||||||
|
env:
|
||||||
|
CI_RUNNER_TOKEN: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: |
|
||||||
|
echo "$CI_RUNNER_TOKEN" | docker login "$REGISTRY" -u "$REGISTRY_USER" --password-stdin
|
||||||
|
|
||||||
|
- name: Build CI image
|
||||||
|
env:
|
||||||
|
CI_RUNNER_TOKEN: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: |
|
||||||
|
echo "$CI_RUNNER_TOKEN" > /tmp/uv_token
|
||||||
|
docker build --network=host -f docker/ci/Dockerfile \
|
||||||
|
--secret id=uv_token,src=/tmp/uv_token \
|
||||||
|
-t "${IMAGE}:latest" \
|
||||||
|
.
|
||||||
|
rm -f /tmp/uv_token
|
||||||
|
|
||||||
|
- name: Tag and push CI image
|
||||||
|
run: |
|
||||||
|
STAMP="$(date -u +%Y%m%d%H%M)"
|
||||||
|
docker tag "${IMAGE}:latest" "${IMAGE}:${STAMP}"
|
||||||
|
docker push "${IMAGE}:latest"
|
||||||
|
docker push "${IMAGE}:${STAMP}"
|
||||||
|
echo "Pushed ${IMAGE}:latest and ${IMAGE}:${STAMP}"
|
||||||
@@ -8,23 +8,17 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
code-quality:
|
code-quality:
|
||||||
runs-on: ubuntu-latest
|
runs-on: python-repositories-ci
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Sync dependencies
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version-file: .python-version
|
|
||||||
|
|
||||||
- name: Install uv
|
|
||||||
run: pip install uv
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
env:
|
env:
|
||||||
UV_LINK_MODE: copy
|
UV_LINK_MODE: copy
|
||||||
run: uv sync --all-extras
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv sync --all-extras --frozen
|
||||||
|
|
||||||
- name: Type check with mypy
|
- name: Type check with mypy
|
||||||
run: uv run mypy .
|
run: uv run mypy .
|
||||||
|
|||||||
@@ -7,24 +7,45 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update-check:
|
update-check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: python-repositories-ci
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CI_RUNNER_TOKEN }}
|
token: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Sync dependencies
|
||||||
uses: actions/setup-python@v5
|
env:
|
||||||
with:
|
UV_LINK_MODE: copy
|
||||||
python-version-file: .python-version
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
- name: Install uv
|
run: uv sync --all-extras
|
||||||
run: pip install uv
|
|
||||||
|
|
||||||
- name: Upgrade dependencies
|
- name: Upgrade dependencies
|
||||||
|
env:
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
run: uv lock --upgrade
|
run: uv lock --upgrade
|
||||||
|
|
||||||
|
- name: Update pre-commit hook revs
|
||||||
|
env:
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv run pre-commit autoupdate
|
||||||
|
|
||||||
|
- name: Sync upgraded dependencies
|
||||||
|
env:
|
||||||
|
UV_LINK_MODE: copy
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv sync --all-extras
|
||||||
|
|
||||||
|
- name: Smoke check
|
||||||
|
run: |
|
||||||
|
uv run ruff check .
|
||||||
|
uv run ruff format --check .
|
||||||
|
uv run mypy .
|
||||||
|
|
||||||
- name: Commit and push changes
|
- name: Commit and push changes
|
||||||
env:
|
env:
|
||||||
API_URL: ${{ vars.API_URL }}
|
API_URL: ${{ vars.API_URL }}
|
||||||
|
|||||||
@@ -16,8 +16,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Check PR title when source files change
|
- name: Check PR title when source files change
|
||||||
env:
|
env:
|
||||||
PR_TITLE: ${{ github.event.pull_request.title }}
|
API_URL: ${{ vars.API_URL }}
|
||||||
|
REPO_OWNER: ${{ github.repository_owner }}
|
||||||
|
REPO_NAME: ${{ github.event.repository.name }}
|
||||||
|
PR_NUMBER: ${{ github.event.pull_request.number }}
|
||||||
|
CI_RUNNER_TOKEN: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
git fetch origin "${{ github.base_ref }}"
|
git fetch origin "${{ github.base_ref }}"
|
||||||
|
PR_TITLE=$(scripts/ci/fetch-pr-title.sh)
|
||||||
|
echo "Live PR title: ${PR_TITLE}"
|
||||||
git diff --name-only "origin/${{ github.base_ref }}...HEAD" \
|
git diff --name-only "origin/${{ github.base_ref }}...HEAD" \
|
||||||
| scripts/ci/check-pr-title.sh "$PR_TITLE"
|
| scripts/ci/check-pr-title.sh "$PR_TITLE"
|
||||||
|
|||||||
@@ -9,25 +9,24 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-publish:
|
build-and-publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: python-repositories-ci
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version-file: .python-version
|
|
||||||
|
|
||||||
- name: Install uv
|
|
||||||
run: pip install uv
|
|
||||||
|
|
||||||
- name: Update version in pyproject.toml to match tag
|
- name: Update version in pyproject.toml to match tag
|
||||||
|
env:
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
run: scripts/ci/bump-version.sh --from-tag "${GITHUB_REF##*/}"
|
run: scripts/ci/bump-version.sh --from-tag "${GITHUB_REF##*/}"
|
||||||
|
|
||||||
- name: Build package
|
- name: Build package
|
||||||
|
env:
|
||||||
|
UV_LINK_MODE: copy
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
uv sync --no-dev
|
uv sync --no-dev --frozen
|
||||||
uv build
|
uv build
|
||||||
|
|
||||||
- name: Publish to Gitea Package Registry
|
- name: Publish to Gitea Package Registry
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
|
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: python-repositories-ci
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -22,19 +22,12 @@ jobs:
|
|||||||
COMMIT_MSG: ${{ github.event.head_commit.message }}
|
COMMIT_MSG: ${{ github.event.head_commit.message }}
|
||||||
run: scripts/ci/parse-merge-commit.sh "$COMMIT_MSG"
|
run: scripts/ci/parse-merge-commit.sh "$COMMIT_MSG"
|
||||||
|
|
||||||
- name: Set up Python
|
|
||||||
if: steps.meta.outputs.bump != 'skip'
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version-file: .python-version
|
|
||||||
|
|
||||||
- name: Install uv
|
|
||||||
if: steps.meta.outputs.bump != 'skip'
|
|
||||||
run: pip install uv
|
|
||||||
|
|
||||||
- name: Bump version
|
- name: Bump version
|
||||||
if: steps.meta.outputs.bump != 'skip'
|
if: steps.meta.outputs.bump != 'skip'
|
||||||
id: bump
|
id: bump
|
||||||
|
env:
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
run: scripts/ci/bump-version.sh "${{ steps.meta.outputs.bump }}"
|
run: scripts/ci/bump-version.sh "${{ steps.meta.outputs.bump }}"
|
||||||
|
|
||||||
- name: Generate release notes
|
- name: Generate release notes
|
||||||
@@ -47,6 +40,15 @@ jobs:
|
|||||||
NEW_TAG="v${{ steps.bump.outputs.version }}"
|
NEW_TAG="v${{ steps.bump.outputs.version }}"
|
||||||
scripts/ci/generate-release-notes.sh "$NEW_TAG" "$PR_TITLE" "$PREV_TAG"
|
scripts/ci/generate-release-notes.sh "$NEW_TAG" "$PR_TITLE" "$PREV_TAG"
|
||||||
|
|
||||||
|
- name: Update CHANGELOG
|
||||||
|
if: steps.meta.outputs.bump != 'skip'
|
||||||
|
env:
|
||||||
|
PR_TITLE: ${{ steps.meta.outputs.pr_title }}
|
||||||
|
run: |
|
||||||
|
PREV_TAG=$(git describe --tags --abbrev=0)
|
||||||
|
VERSION="${{ steps.bump.outputs.version }}"
|
||||||
|
scripts/ci/update-changelog.sh "$VERSION" "$PR_TITLE" "$PREV_TAG"
|
||||||
|
|
||||||
- name: Commit, tag, and push
|
- name: Commit, tag, and push
|
||||||
if: steps.meta.outputs.bump != 'skip'
|
if: steps.meta.outputs.bump != 'skip'
|
||||||
env:
|
env:
|
||||||
@@ -55,7 +57,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
git config user.name "CI Bot"
|
git config user.name "CI Bot"
|
||||||
git config user.email "[email protected]"
|
git config user.email "[email protected]"
|
||||||
git add pyproject.toml uv.lock
|
git add pyproject.toml uv.lock CHANGELOG.md
|
||||||
git commit -m "chore: release v${VERSION} [skip ci]"
|
git commit -m "chore: release v${VERSION} [skip ci]"
|
||||||
git tag "v${VERSION}"
|
git tag "v${VERSION}"
|
||||||
git remote set-url origin "https://x-access-token:${CI_RUNNER_TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY}.git"
|
git remote set-url origin "https://x-access-token:${CI_RUNNER_TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY}.git"
|
||||||
@@ -81,3 +83,23 @@ jobs:
|
|||||||
-H "Authorization: token ${CI_RUNNER_TOKEN}" \
|
-H "Authorization: token ${CI_RUNNER_TOKEN}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "$PAYLOAD"
|
-d "$PAYLOAD"
|
||||||
|
|
||||||
|
# Publish here instead of relying on publish.yml tag trigger: release commits use
|
||||||
|
# [skip ci], which suppresses tag-push workflows, and Gitea does not emit release
|
||||||
|
# events for releases created by the CI bot account.
|
||||||
|
- name: Build package
|
||||||
|
if: steps.meta.outputs.bump != 'skip'
|
||||||
|
env:
|
||||||
|
UV_LINK_MODE: copy
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: |
|
||||||
|
uv sync --no-dev --frozen
|
||||||
|
uv build
|
||||||
|
|
||||||
|
- name: Publish to Gitea Package Registry
|
||||||
|
if: steps.meta.outputs.bump != 'skip'
|
||||||
|
env:
|
||||||
|
UV_PUBLISH_TOKEN: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
UV_PUBLISH_URL: ${{ vars.REPOSITORY_URL }}
|
||||||
|
run: uv publish
|
||||||
|
|||||||
@@ -7,23 +7,17 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
safety:
|
safety:
|
||||||
runs-on: ubuntu-latest
|
runs-on: python-repositories-ci
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Sync dependencies
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version-file: .python-version
|
|
||||||
|
|
||||||
- name: Install uv
|
|
||||||
run: pip install uv
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
env:
|
env:
|
||||||
UV_LINK_MODE: copy
|
UV_LINK_MODE: copy
|
||||||
run: uv sync
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv sync --all-extras --frozen
|
||||||
|
|
||||||
- name: Run safety check
|
- name: Run safety check
|
||||||
run: uv run safety check
|
run: uv run safety check
|
||||||
|
|||||||
+101
-15
@@ -7,29 +7,115 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
unit-tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: python-repositories-ci
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Sync dependencies
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version-file: .python-version
|
|
||||||
|
|
||||||
- name: Install uv
|
|
||||||
run: pip install uv
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
env:
|
env:
|
||||||
UV_LINK_MODE: copy
|
UV_LINK_MODE: copy
|
||||||
run: uv sync --all-extras
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv sync --all-extras --frozen
|
||||||
|
|
||||||
- name: Run pytest
|
- name: Run unit tests
|
||||||
|
run: |
|
||||||
|
# --cov-fail-under=0: partial coverage only; floor is checked in coverage-report.
|
||||||
|
uv run pytest tests/unit/ -m "not integration" \
|
||||||
|
--cov=python_repositories \
|
||||||
|
--cov-report= \
|
||||||
|
--cov-fail-under=0
|
||||||
|
|
||||||
|
- name: Upload unit coverage
|
||||||
|
uses: https://github.com/christopherHX/gitea-upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: coverage-unit
|
||||||
|
path: .coverage
|
||||||
|
retention-days: 1
|
||||||
|
compression-level: 0
|
||||||
|
|
||||||
|
integration-tests:
|
||||||
|
runs-on: python-repositories-ci
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Sync dependencies
|
||||||
env:
|
env:
|
||||||
PYTHONPATH: .
|
UV_LINK_MODE: copy
|
||||||
run: uv run pytest --cov=python_repositories --cov-report=term-missing > coverage.txt
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv sync --all-extras --frozen
|
||||||
|
|
||||||
|
- name: Verify Docker
|
||||||
|
run: docker info
|
||||||
|
|
||||||
|
- name: Run integration tests
|
||||||
|
run: |
|
||||||
|
# --cov-fail-under=0: partial coverage only; floor is checked in coverage-report.
|
||||||
|
uv run pytest -m integration \
|
||||||
|
--cov=python_repositories \
|
||||||
|
--cov-report= \
|
||||||
|
--cov-fail-under=0
|
||||||
|
|
||||||
|
- name: Upload integration coverage
|
||||||
|
uses: https://github.com/christopherHX/gitea-upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: coverage-integration
|
||||||
|
path: .coverage
|
||||||
|
retention-days: 1
|
||||||
|
compression-level: 0
|
||||||
|
|
||||||
|
coverage-report:
|
||||||
|
# Merges unit + integration coverage and enforces fail_under from pyproject.toml.
|
||||||
|
needs: [unit-tests, integration-tests]
|
||||||
|
runs-on: python-repositories-ci
|
||||||
|
if: github.event_name == 'pull_request' || github.event_name == 'push'
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Sync dependencies
|
||||||
|
env:
|
||||||
|
UV_LINK_MODE: copy
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv sync --all-extras --frozen
|
||||||
|
|
||||||
|
- name: Download unit coverage
|
||||||
|
uses: https://github.com/christopherHX/gitea-download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: coverage-unit
|
||||||
|
path: coverage-unit
|
||||||
|
|
||||||
|
- name: Download integration coverage
|
||||||
|
uses: https://github.com/christopherHX/gitea-download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: coverage-integration
|
||||||
|
path: coverage-integration
|
||||||
|
|
||||||
|
- name: Combine coverage report
|
||||||
|
run: |
|
||||||
|
# --fail-under=0 so the full report is always written before the floor check.
|
||||||
|
uv run coverage combine coverage-unit/.coverage coverage-integration/.coverage
|
||||||
|
uv run coverage report -m --include='python_repositories/*' --fail-under=0 > coverage.txt
|
||||||
|
|
||||||
|
- name: Show coverage report
|
||||||
|
run: cat coverage.txt
|
||||||
|
|
||||||
|
- name: Enforce coverage floor
|
||||||
|
run: |
|
||||||
|
# Reads fail_under from pyproject.toml; only combined coverage is evaluated here.
|
||||||
|
FAIL_UNDER=$(python3 -c "import tomllib; print(tomllib.load(open('pyproject.toml', 'rb'))['tool']['coverage']['report']['fail_under'])")
|
||||||
|
echo "Checking combined coverage against ${FAIL_UNDER}% floor..."
|
||||||
|
if uv run coverage report --fail-under="$FAIL_UNDER" --include='python_repositories/*'; then
|
||||||
|
echo "Coverage floor met."
|
||||||
|
else
|
||||||
|
echo "::error::Combined coverage is below the ${FAIL_UNDER}% floor"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Post coverage summary to PR
|
- name: Post coverage summary to PR
|
||||||
if: github.event_name == 'pull_request'
|
if: github.event_name == 'pull_request'
|
||||||
|
|||||||
+19
-17
@@ -11,28 +11,30 @@ repos:
|
|||||||
- id: name-tests-test
|
- id: name-tests-test
|
||||||
- id: check-merge-conflict
|
- id: check-merge-conflict
|
||||||
|
|
||||||
# Python linting and formatting with Ruff
|
# Python tooling via uv (versions pinned in uv.lock)
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: local
|
||||||
rev: v0.12.8
|
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff-check
|
- id: ruff-check
|
||||||
args: [--fix]
|
name: ruff check
|
||||||
|
entry: uv run ruff check --fix
|
||||||
|
language: system
|
||||||
|
types: [python]
|
||||||
- id: ruff-format
|
- id: ruff-format
|
||||||
|
name: ruff format
|
||||||
# Static type checking with mypy
|
entry: uv run ruff format
|
||||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
language: system
|
||||||
rev: v1.8.0
|
types: [python]
|
||||||
hooks:
|
|
||||||
- id: mypy
|
- id: mypy
|
||||||
additional_dependencies:
|
name: mypy
|
||||||
- types-redis
|
entry: uv run mypy .
|
||||||
|
language: system
|
||||||
# Python syntax modernization with pyupgrade
|
types: [python]
|
||||||
- repo: https://github.com/asottile/pyupgrade
|
pass_filenames: false
|
||||||
rev: v3.20.0
|
|
||||||
hooks:
|
|
||||||
- id: pyupgrade
|
- id: pyupgrade
|
||||||
args: ["--py312-plus"]
|
name: pyupgrade
|
||||||
|
entry: uv run pyupgrade --py312-plus
|
||||||
|
language: system
|
||||||
|
types: [python]
|
||||||
|
|
||||||
# Formatting for Markdown, JSON, and YAML with Prettier
|
# Formatting for Markdown, JSON, and YAML with Prettier
|
||||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||||
|
|||||||
+373
@@ -0,0 +1,373 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.2.0] - 2026-07-12
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
Add Postgres table adapter with TableRepositoryInterface
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- b37b2e6 Merge pull request '[minor] Add Postgres table adapter with TableRepositoryInterface' (#58) from cursor/postgres-table-adapter into main
|
||||||
|
- 1babb52 Apply ruff formatting to postgres adapter and tests.
|
||||||
|
- 63ee17d Apply prettier formatting to README and CHANGELOG.
|
||||||
|
- 2e38bd2 Fix ruff import ordering in postgres test files.
|
||||||
|
- dc6f8a3 Add Postgres table adapter with TableRepositoryInterface.
|
||||||
|
|
||||||
|
## [2.1.0] - 2026-07-11
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Add runtime-checkable Protocol typing to public interfaces
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 1cbcc1c Merge pull request '[minor] Add runtime-checkable Protocol typing to public interfaces' (#57) from cursor/protocol-abc-interfaces into main
|
||||||
|
- a0e5c9d Document test organization and add Cursor workflow rules.
|
||||||
|
- 44b15cb Move structural typing tests into interface unit test files.
|
||||||
|
- f6ee9a3 Add runtime-checkable Protocol typing to all public interfaces.
|
||||||
|
- 0829354 Merge pull request 'Add async future note and remove redundant pytest pythonpath' (#56) from cursor/readme-async-and-test-path-cleanup into main
|
||||||
|
- a0d509a Format CHANGELOG.md with Prettier.
|
||||||
|
- 9b7b15a Document possible async support and drop redundant pytest pythonpath.
|
||||||
|
|
||||||
|
## [2.0.5] - 2026-07-10
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Allow empty payloads in Redis and MinIO adapters
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 6d02f32 Merge pull request '[patch] Allow empty payloads in Redis and MinIO adapters' (#55) from cursor/allow-empty-payloads into main
|
||||||
|
- 57b396b Allow empty payloads in Redis and MinIO adapters.
|
||||||
|
- 093e538 Merge pull request '[chore] Scope integration fixtures per backend subdirectory' (#54) from cursor/scoped-integration-fixtures into main
|
||||||
|
- b28ac6e Scope integration fixtures per backend subdirectory.
|
||||||
|
- 6c66fe4 Merge pull request 'Add consumer-facing CHANGELOG.md maintained by release CI' (#53) from cursor/consumer-changelog into main
|
||||||
|
- 089a128 Format CHANGELOG.md with Prettier
|
||||||
|
- 0a5bd39 Add consumer-facing CHANGELOG.md maintained by release CI.
|
||||||
|
- 683ee33 Merge pull request '[chore] add repository URL and Python 3.12 packaging metadata' (#52) from cursor/add-packaging-metadata into main
|
||||||
|
- 9df5032 Add repository URL and Python 3.12 packaging metadata.
|
||||||
|
- 4f6f33f Merge pull request 'Drop types-redis in favor of redis inline types' (#51) from cursor/drop-types-redis into main
|
||||||
|
- 10d43ce Drop types-redis in favor of redis inline types.
|
||||||
|
|
||||||
|
## [2.0.4] - 2026-07-10
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Include optional dependencies in security audit
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 4f7b672 chore: release v2.0.4 [skip ci]
|
||||||
|
- a27e9e5 Merge pull request '[fix] Include optional dependencies in security audit' (#50) from cursor/security-audit-all-extras into main
|
||||||
|
- fd0045d Include optional dependencies in security audit.
|
||||||
|
- 515f4bb Merge pull request 'revert 707f11f578f007c7152582ea524b66dacea50111' (#49) from brian-patch-1 into main
|
||||||
|
- ef31fb4 revert 707f11f578f007c7152582ea524b66dacea50111
|
||||||
|
- 707f11f chore: release v2.0.4 [skip ci]
|
||||||
|
- b1d34f8 Merge pull request '[patch] Unify dev tooling via uv so pre-commit, CI, and the update bot stay aligned' (#48) from chore/align-dev-tooling-via-uv into main
|
||||||
|
- 565879d Unify dev tooling via uv so pre-commit, CI, and the update bot stay aligned.
|
||||||
|
- 0d0f430 Merge pull request 'Fix automated package publishing in release workflow' (#47) from fix/release-workflow-publish into main
|
||||||
|
- 5ac40b1 Publish packages from the release workflow so automated releases reach the registry.
|
||||||
|
|
||||||
|
## [2.0.3] - 2026-07-10
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Use structured fields for adapter debug and info logs
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- fa4ff1f chore: release v2.0.3 [skip ci]
|
||||||
|
- 0a39151 Merge pull request '[patch] Use structured fields for adapter debug and info logs' (#46) from cursor/structured-adapter-logging into main
|
||||||
|
- 82a702d Fix mypy error in Minio adapter log assertion.
|
||||||
|
- b886a7c Use structured fields for adapter debug and info logs.
|
||||||
|
- 4518a93 Merge pull request 'Migrate Python workflows to python-repositories-ci runner' (#41) from cursor/migrate-python-repositories-ci into main
|
||||||
|
- a8b7b59 Migrate Python workflows to python-repositories-ci runner label.
|
||||||
|
- 0e6941d Merge pull request 'Use lowercase CI image registry owner for Docker compatibility' (#45) from cursor/fix-ci-registry-owner-lowercase into main
|
||||||
|
- a6428cc Use lowercase CI image registry owner for Docker compatibility.
|
||||||
|
- 655fdc4 Merge pull request 'Fix CI image registry owner to match Gitea org slug' (#44) from cursor/fix-ci-registry-owner-case into main
|
||||||
|
- e031c54 Fix CI image registry owner to match Gitea org slug.
|
||||||
|
- 49b6238 Merge pull request 'Rename CI registry owner from brian to lille-vemmelund' (#43) from cursor/rename-ci-owner-to-lille-vemmelund into main
|
||||||
|
- 0549358 Keep python-utils package index under brian owner.
|
||||||
|
- 33efbd1 Update CI registry owner from brian to lille-vemmelund.
|
||||||
|
- 24126e4 Merge pull request 'Fix CI image build failures on runners with isolated DinD DNS' (#42) from fix/ci-image-build-dns into main
|
||||||
|
- f3b6cdb Fix CI image build failures on runners with isolated DinD DNS.
|
||||||
|
- fa2554e Merge pull request 'Add nightly CI base image and migrate workflows to python-repositories-ci' (#40) from cursor/ci-base-image into main
|
||||||
|
- b21fd24 Revert workflows to ubuntu-latest until CI image is seeded.
|
||||||
|
- 441a212 Add local CI image build script and document bootstrap flow.
|
||||||
|
- f2a8581 Read Python version from .python-version in CI image build.
|
||||||
|
- 3b05260 Add nightly CI base image and migrate workflows to python-repositories-ci.
|
||||||
|
|
||||||
|
## [2.0.2] - 2026-07-09
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Use dict[str, Any] for JSON repository document types
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 369295b chore: release v2.0.2 [skip ci]
|
||||||
|
- 95c7859 Merge pull request '[patch] Use dict[str, Any] for JSON repository document types' (#38) from cursor/json-dict-str-any-typing into main
|
||||||
|
- 42e885e Use dict[str, Any] for JSON repository document types.
|
||||||
|
|
||||||
|
## [2.0.1] - 2026-07-09
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Align Redis and MinIO connect() idempotency
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- bd4794d chore: release v2.0.1 [skip ci]
|
||||||
|
- 3dc412c Merge pull request '[patch] Align Redis and MinIO connect() idempotency' (#37) from cursor/connect-idempotency-alignment into main
|
||||||
|
- b8d88e6 Cover injected-client connect when client was cleared by disconnect.
|
||||||
|
- 67bb88f Align Redis and MinIO connect() idempotency in ConnectionAwareAdapter.
|
||||||
|
|
||||||
|
## [2.0.0] - 2026-07-09
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Make MinIO bucket creation opt-in with production-safe defaults
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- c2e6a96 chore: release v2.0.0 [skip ci]
|
||||||
|
- 547a1b3 Merge pull request '[breaking] Make MinIO bucket creation opt-in with production-safe defaults' (#36) from cursor/minio-bucket-creation-opt-in into main
|
||||||
|
- 39baf9b Fix examples integration test by provisioning MinIO bucket in fixture.
|
||||||
|
- 4a5b3b6 Make MinIO bucket creation opt-in with production-safe defaults.
|
||||||
|
- 1431f45 Merge pull request 'Move Redis test container helpers into integration conftest' (#35) from cursor/move-redis-container-to-conftest into main
|
||||||
|
- eafc717 Move Redis test container helpers into integration conftest.
|
||||||
|
|
||||||
|
## [1.1.0] - 2026-07-08
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Add Redis scan_keys iterator API
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 9a9b7b2 chore: release v1.1.0 [skip ci]
|
||||||
|
- 5b9573d Merge pull request '[minor] Add Redis scan_keys iterator API' (#34) from cursor/redis-scan-keys into main
|
||||||
|
- 50444af Add Redis scan_keys iterator API.
|
||||||
|
|
||||||
|
## [1.0.0] - 2026-07-08
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Clarify MinIO get() error semantics to match Redis behavior
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 2f19fcc chore: release v1.0.0 [skip ci]
|
||||||
|
- 3bd6589 Merge pull request '[breaking] Clarify MinIO get() error semantics to match Redis behavior' (#33) from cursor/minio-error-semantics into main
|
||||||
|
- 5311d49 Clarify MinIO get() error semantics to match Redis behavior.
|
||||||
|
|
||||||
|
## [0.5.1] - 2026-07-07
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Fix MinIO get_object response leak in MinioAdapter.get()
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 703bb95 chore: release v0.5.1 [skip ci]
|
||||||
|
- 8e47ebf Merge pull request '[patch] Fix MinIO get_object response leak in MinioAdapter.get()' (#32) from fix/minio-get-object-response-cleanup into main
|
||||||
|
- 9a800bf Fetch live PR title in pr-title-check CI workflow.
|
||||||
|
- 8c34534 Fix MinIO get_object response leak in MinioAdapter.get().
|
||||||
|
- b1210bd Merge pull request 'Reach 100% combined coverage with targeted unit tests' (#31) from cursor/balanced-100-coverage into main
|
||||||
|
- 39b1043 Fix mypy unreachable-code warning in minio reconnect test.
|
||||||
|
- beb2b51 Reach 100% combined coverage with targeted unit tests.
|
||||||
|
- ce062be Merge pull request 'Enforce 90% combined coverage floor in CI' (#29) from cursor/enforce-coverage-floor into main
|
||||||
|
- a381d45 Lower combined coverage floor from 95% to 90%.
|
||||||
|
- 5c8cd84 Document where combined coverage floor is enforced in CI.
|
||||||
|
- 3463298 Skip coverage floor check in partial CI test jobs.
|
||||||
|
- 5393efc Enforce a 95% combined coverage floor in CI and local runs.
|
||||||
|
- e39fc96 Merge pull request 'Split CI into parallel unit, integration, and coverage report jobs' (#28) from cursor/split-ci-test-jobs into main
|
||||||
|
- c1f4826 Use christopherhx v4 artifact actions for parallel coverage merge.
|
||||||
|
- 0315a33 Avoid cross-job artifacts; combine coverage with --cov-append.
|
||||||
|
- 5d33ec6 Use artifact action v3 for Gitea Actions compatibility.
|
||||||
|
- 9538e4d Split CI into parallel unit, integration, and coverage report jobs.
|
||||||
|
- 14b8d27 Merge pull request 'Replace hardcoded version examples in release docs' (#27) from cursor/fix-version-doc-drift into main
|
||||||
|
- d3cbb65 Use version-agnostic examples in release docs.
|
||||||
|
|
||||||
|
## [0.5.0] - 2026-07-06
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Add config and client injection with test reorganization
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 7dbb1fc chore: release v0.5.0 [skip ci]
|
||||||
|
- 918e5e6 Merge pull request '[minor] Add config and client injection with test reorganization' (#25) from cursor/config-client-injection into main
|
||||||
|
- 3aa9128 Load MINIO_SECURE from env and replace adapter asserts with explicit errors.
|
||||||
|
- 7991dab Add config and client injection with test reorganization.
|
||||||
|
- 366831a Merge pull request 'chore(deps): update dependencies' (#26) from renovate/auto-deps-update into main
|
||||||
|
- a98905d chore(deps): update dependencies [automated]
|
||||||
|
- 7ed1b34 Merge pull request 'Sync uv.lock on release to prevent CI failures' (#24) from cursor/sync-uv-lock-on-release into main
|
||||||
|
- 3236f27 manually updated package version
|
||||||
|
- ac487d9 Sync uv.lock on release to keep CI clean.
|
||||||
|
|
||||||
|
## [0.4.1] - 2026-07-05
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Extract shared connection lifecycle into ConnectionAwareAdapter
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- a049ce3 chore: release v0.4.1 [skip ci]
|
||||||
|
- 7b4cf84 Merge pull request '[patch] Extract shared connection lifecycle into ConnectionAwareAdapter' (#23) from cursor/extract-connection-aware-adapter into main
|
||||||
|
- b5a92e6 Sync uv.lock with pyproject.toml version 0.4.0.
|
||||||
|
- 7b950e0 Extract shared connection lifecycle into ConnectionAwareAdapter.
|
||||||
|
|
||||||
|
## [0.4.0] - 2026-07-05
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Strengthen is_connected with cached health probes
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- fe0c477 chore: release v0.4.0 [skip ci]
|
||||||
|
- e7e0fc8 Merge pull request '[minor] Strengthen is_connected with cached health probes' (#22) from cursor/strengthen-is-connected-health-checks into main
|
||||||
|
- 34fc046 Sync uv.lock with pyproject.toml version 0.3.2.
|
||||||
|
- 5149299 Strengthen is_connected with cached health probes.
|
||||||
|
|
||||||
|
## [0.3.2] - 2026-06-30
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Fix optional dependency handling for Redis and MinIO adapters
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- fef9552 chore: release v0.3.2 [skip ci]
|
||||||
|
- e9b2189 Merge pull request '[patch] Fix optional dependency handling for Redis and MinIO adapters' (#19) from cursor/fix-optional-dependencies into main
|
||||||
|
- f595390 Fix optional-deps import test for full-suite execution.
|
||||||
|
- 1f02195 Delegate top-level adapter imports to adapters package.
|
||||||
|
- f092ca2 Fix trailing whitespace in LICENSE and .gitignore.
|
||||||
|
- c6eed43 Fix optional dependency handling for Redis and MinIO adapters.
|
||||||
|
- 9e4b1e2 Merge pull request 'Avoid testcontainers Redis deprecation warning in integration tests.' (#18) from fix/redis-testcontainer-deprecation into main
|
||||||
|
- 0096df7 Avoid testcontainers Redis deprecation warning in integration tests.
|
||||||
|
- 3073bfb Merge pull request 'Fix PR coverage comment posting in CI.' (#17) from fix/coverage-pr-comment into main
|
||||||
|
- 30a1de3 Fix PR coverage comment posting in CI.
|
||||||
|
- 8465957 Merge pull request '[patch] update dependencies' (#16) from renovate/auto-deps-update into main
|
||||||
|
- 3ecb9c3 chore: retrigger CI
|
||||||
|
- 0f31170 Fix mypy errors from minio 7.2.20 type stubs.
|
||||||
|
- e3cab5e chore(deps): update dependencies [automated]
|
||||||
|
- f428a97 Merge pull request 'Fix dependency bot PR creation for Gitea.' (#15) from cursor/fix-dependency-bot-gitea-pr into main
|
||||||
|
- a3b9912 Fix dependency bot PR creation for Gitea.
|
||||||
|
- abaa078 Merge pull request 'Fix dependency update bot to use uv lock --upgrade.' (#14) from cursor/fix-dependency-update-bot-uv-lock into main
|
||||||
|
- 9864f0c Fix dependency update bot to use uv lock --upgrade.
|
||||||
|
- e39b467 Merge pull request 'Automate releases from PR titles and clean up CI workflows.' (#13) from cursor/pr-title-release-automation into main
|
||||||
|
- 85c1a64 Sync uv.lock with pyproject.toml version 0.3.1.
|
||||||
|
- a8491c0 Automate releases from PR titles and clean up CI workflows.
|
||||||
|
|
||||||
|
## [0.3.1] - 2026-06-28
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Add public repository interfaces and subclassable adapter CRUD API.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 2bb361e Merge pull request 'Add public repository interfaces and subclassable adapter CRUD API.' (#11) from cursor/public-repository-api into main
|
||||||
|
- c5169df Use pre-commit for Prettier in CI and document local hook setup.
|
||||||
|
- 497533f Fix mypy context manager typing for adapter subclasses.
|
||||||
|
- e98fd3b Add public repository interfaces and subclassable adapter CRUD API.
|
||||||
|
- f4280f1 Merge pull request 'Remove non-existent Mongo adapter from README.' (#10) from cleanup/remove-mongo-adapter-mentions into main
|
||||||
|
- d9b9fa4 updated package settings
|
||||||
|
- 9d25f7c updated package settings
|
||||||
|
- 1635815 updated package settings
|
||||||
|
- 933c4ee updated package settings
|
||||||
|
- 2b0d98f updated package settings
|
||||||
|
- 729fa48 Remove non-existent Mongo adapter from README.
|
||||||
|
|
||||||
|
## [0.2.3] - 2025-09-18
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
added support for content type when putting object in minio
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- fa011be Merge pull request 'added support for content type when putting object in minio' (#9) from add-support-for-content-type-in-minio into main
|
||||||
|
- 2e93309 ruff format fix
|
||||||
|
- 3ab8da9 added support for content type when putting object in minio
|
||||||
|
|
||||||
|
## [0.2.2] - 2025-09-17
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
moved import of optional packages into classes
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 1dd604d Merge pull request 'moved import of optional packages into classes' (#6) from make-optional-parts-independent into main
|
||||||
|
- e5c4025 added graceful handling of missing optional packages
|
||||||
|
- 396cf83 code quality fixes
|
||||||
|
- 538b26b mypy fixed
|
||||||
|
- ee6acc6 moved import of optional packages into classes
|
||||||
|
|
||||||
|
## [0.2.1] - 2025-09-15
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
exposed minio adapter
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 0ca07c0 Merge pull request 'exposed minio adapter' (#5) from expose-minio-adapter into main
|
||||||
|
- 7446e88 added py.typed mypy config file
|
||||||
|
- d5f437f ruff format fix
|
||||||
|
- 7beca7c exposed minio adapter
|
||||||
|
|
||||||
|
## [0.2.0] - 2025-09-15
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
add-minio-adapter
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 65d8051 Merge pull request 'add-minio-adapter' (#4) from add-minio-adapter into main
|
||||||
|
- f5af303 auto install all extra packages
|
||||||
|
- 3260a3f added new optional package to ci
|
||||||
|
- c7bced4 ruff lint fixes
|
||||||
|
- 800d702 pyupgrade
|
||||||
|
- 5a72507 ruff format
|
||||||
|
- c45ba3c mypy fixes
|
||||||
|
- a3b5443 added minio adapter and tests
|
||||||
|
- cc99fe5 minor corrections
|
||||||
|
- 93fffe1 added optional group minio
|
||||||
|
|
||||||
|
## [0.1.0] - 2025-09-14
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
|
||||||
|
Release v0.1.0
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 2eafd73 Merge pull request 'added redis adapter' (#1) from collect-code-from-other-repos into main
|
||||||
|
- 1cc047d removed unused bound ports for test
|
||||||
|
- c7cc2a3 added optional package redis
|
||||||
|
- b5d0297 pyupgrade fixed imports
|
||||||
|
- 2fa633a ruff fixed formatting
|
||||||
|
- 0e47db2 fuxed mypy issues
|
||||||
|
- 0948799 added integration tests
|
||||||
|
- 524bd0f fixed connection error handling
|
||||||
|
- 969c2c8 installed more pytest-cov
|
||||||
|
- 7caee87 added installing optional redis group
|
||||||
|
- 918535e added test coverage and upload step
|
||||||
|
- 5d7afe7 ruff format corrections
|
||||||
|
- 59a943e added redis types stub and fixed return type
|
||||||
|
- 1abcae4 added redis adapter
|
||||||
|
- c789e33 initial commit
|
||||||
|
- 56cad42 Initial commit
|
||||||
@@ -7,12 +7,18 @@ Subclass an adapter in your own repository to add domain-specific methods while
|
|||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
| Layer | Responsibility |
|
| Layer | Responsibility |
|
||||||
| ---------------- | ----------------------------------------------------------------- |
|
| ---------------- | ------------------------------------------------------------------------------------ |
|
||||||
| **Interfaces** | Abstract contracts for connection, context, and CRUD |
|
| **Interfaces** | Abstract contracts for connection, context, and CRUD |
|
||||||
| **Adapters** | Technology-specific base classes (`RedisAdapter`, `MinioAdapter`) |
|
| **Adapters** | Technology-specific base classes (`RedisAdapter`, `MinioAdapter`, `PostgresAdapter`) |
|
||||||
| **Your project** | Subclass an adapter and add domain methods |
|
| **Your project** | Subclass an adapter and add domain methods |
|
||||||
|
|
||||||
Connection adapters expose `connect()`, `disconnect()`, and `is_connected()`. The latter verifies backend reachability with a cached health probe (default TTL: 1 second). Subclasses may override `health_check_ttl_seconds`.
|
Each public interface is a `@runtime_checkable` `Protocol` with `@abstractmethod` members. **Subclass an adapter** when you need connection management and shared behavior — explicit subclasses get runtime instantiation guards and inherited default methods (e.g. `scan_keys`). **Type-annotate against an interface** when you want loose coupling — any object with the right methods satisfies the contract for mypy and `isinstance()` checks, without inheriting from this package.
|
||||||
|
|
||||||
|
Connection adapters expose `connect()`, `disconnect()`, and `is_connected()`. The latter verifies backend reachability with a cached health probe (default TTL: 1 second). Subclasses may override `health_check_ttl_seconds`. `connect()` is idempotent: calling it while already connected and healthy is a no-op.
|
||||||
|
|
||||||
|
## Future direction
|
||||||
|
|
||||||
|
The current API is synchronous. Async repository interfaces and adapters may be added in a future release; existing sync usage would remain supported.
|
||||||
|
|
||||||
## Optional dependencies
|
## Optional dependencies
|
||||||
|
|
||||||
@@ -23,7 +29,8 @@ Install with the extras you need:
|
|||||||
```bash
|
```bash
|
||||||
uv add python-repositories[redis]
|
uv add python-repositories[redis]
|
||||||
uv add python-repositories[minio]
|
uv add python-repositories[minio]
|
||||||
uv add python-repositories[redis,minio]
|
uv add python-repositories[postgres]
|
||||||
|
uv add python-repositories[redis,minio,postgres]
|
||||||
```
|
```
|
||||||
|
|
||||||
### Redis (`JsonRepositoryInterface`)
|
### Redis (`JsonRepositoryInterface`)
|
||||||
@@ -34,24 +41,56 @@ Requires Redis with the RedisJSON module (e.g. redis-stack).
|
|||||||
| -------------------- | ---------------------------------------------------- |
|
| -------------------- | ---------------------------------------------------- |
|
||||||
| `REDIS_URI` | Redis connection URL (e.g. `redis://localhost:6379`) |
|
| `REDIS_URI` | Redis connection URL (e.g. `redis://localhost:6379`) |
|
||||||
|
|
||||||
|
For key discovery:
|
||||||
|
|
||||||
|
- `list_keys(pattern)` is simple and returns a `list[str]`, but it uses Redis `KEYS` and may block on large datasets.
|
||||||
|
- `scan_keys(pattern, *, count=None)` is preferred for production use and yields keys incrementally via Redis `SCAN`.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```python
|
||||||
|
for key in repo.scan_keys("user:*"):
|
||||||
|
print(key)
|
||||||
|
```
|
||||||
|
|
||||||
### MinIO (`ObjectRepositoryInterface`)
|
### MinIO (`ObjectRepositoryInterface`)
|
||||||
|
|
||||||
| Environment variable | Description |
|
| Environment variable | Description |
|
||||||
| -------------------- | ------------------------------------------- |
|
| -------------------------------- | ------------------------------------------------------------------------ |
|
||||||
| `MINIO_ENDPOINT` | MinIO server endpoint |
|
| `MINIO_ENDPOINT` | MinIO server endpoint |
|
||||||
| `MINIO_ACCESS_KEY` | Access key |
|
| `MINIO_ACCESS_KEY` | Access key |
|
||||||
| `MINIO_SECRET_KEY` | Secret key |
|
| `MINIO_SECRET_KEY` | Secret key |
|
||||||
| `MINIO_BUCKET` | Bucket name (created on connect if missing) |
|
| `MINIO_BUCKET` | Bucket name |
|
||||||
| `MINIO_SECURE` | Use HTTPS (`true`/`false`; default: `true`) |
|
| `MINIO_SECURE` | Use HTTPS (`true`/`false`; default: `true`) |
|
||||||
|
| `MINIO_CREATE_BUCKET_IF_MISSING` | Auto-create `MINIO_BUCKET` on connect (`true`/`false`; default: `false`) |
|
||||||
|
|
||||||
Copy [`.env.example`](.env.example) to `.env` for local development. `RedisConfig.from_env()` and `MinioConfig.from_env()` load `.env` automatically when resolving configuration from the environment.
|
For production, it is recommended to leave `MINIO_CREATE_BUCKET_IF_MISSING` unset so that `connect()` fails fast if the expected bucket is missing. For local development, you will often want `MINIO_SECURE=false` and `MINIO_CREATE_BUCKET_IF_MISSING=true`.
|
||||||
|
|
||||||
|
### Postgres (`TableRepositoryInterface`)
|
||||||
|
|
||||||
|
Requires PostgreSQL 10 or later; tested against PostgreSQL 16 in CI. Tables are owned by your migrations — the adapter verifies the configured table exists on connect.
|
||||||
|
|
||||||
|
| Environment variable | Description |
|
||||||
|
| ---------------------- | --------------------------------------- |
|
||||||
|
| `POSTGRES_URI` | PostgreSQL connection URL |
|
||||||
|
| `POSTGRES_TABLE` | Table name for CRUD operations |
|
||||||
|
| `POSTGRES_PRIMARY_KEY` | Primary key column name (default: `id`) |
|
||||||
|
|
||||||
|
Copy [`.env.example`](.env.example) to `.env` for local development. `RedisConfig.from_env()`, `MinioConfig.from_env()`, and `PostgresConfig.from_env()` load `.env` automatically when resolving configuration from the environment.
|
||||||
|
|
||||||
## Configuration injection
|
## Configuration injection
|
||||||
|
|
||||||
Adapters accept optional `config` and `client` keyword arguments for explicit setup and testing:
|
Adapters accept optional `config` and `client` keyword arguments for explicit setup and testing:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
from python_repositories import RedisAdapter, RedisConfig, MinioAdapter, MinioConfig
|
from python_repositories import (
|
||||||
|
MinioAdapter,
|
||||||
|
MinioConfig,
|
||||||
|
PostgresAdapter,
|
||||||
|
PostgresConfig,
|
||||||
|
RedisAdapter,
|
||||||
|
RedisConfig,
|
||||||
|
)
|
||||||
|
|
||||||
redis = RedisAdapter(config=RedisConfig(uri="redis://localhost:6379"))
|
redis = RedisAdapter(config=RedisConfig(uri="redis://localhost:6379"))
|
||||||
minio = MinioAdapter(
|
minio = MinioAdapter(
|
||||||
@@ -61,6 +100,14 @@ minio = MinioAdapter(
|
|||||||
secret_key="minioadmin",
|
secret_key="minioadmin",
|
||||||
bucket="my-bucket",
|
bucket="my-bucket",
|
||||||
secure=False,
|
secure=False,
|
||||||
|
# create_bucket_if_missing=True, # convenient for local dev
|
||||||
|
)
|
||||||
|
)
|
||||||
|
postgres = PostgresAdapter(
|
||||||
|
config=PostgresConfig(
|
||||||
|
uri="postgresql://localhost/mydb",
|
||||||
|
table="users",
|
||||||
|
primary_key="user_id",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
@@ -75,7 +122,7 @@ from python_repositories import load_dotenv
|
|||||||
load_dotenv() # optional — from_env() also loads .env by default
|
load_dotenv() # optional — from_env() also loads .env by default
|
||||||
```
|
```
|
||||||
|
|
||||||
Calling `RedisAdapter()` or `MinioAdapter()` with no arguments still loads configuration from environment variables (and `.env` if present).
|
Calling `RedisAdapter()`, `MinioAdapter()`, or `PostgresAdapter()` with no arguments still loads configuration from environment variables (and `.env` if present).
|
||||||
|
|
||||||
## Quick start
|
## Quick start
|
||||||
|
|
||||||
@@ -104,19 +151,32 @@ with ArtifactObjectRepository() as repo:
|
|||||||
data = repo.get_artifact("report-1")
|
data = repo.get_artifact("report-1")
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Relational rows with Postgres
|
||||||
|
|
||||||
|
```python
|
||||||
|
from python_repositories.examples.user_table_repository import UserTableRepository
|
||||||
|
|
||||||
|
with UserTableRepository() as repo:
|
||||||
|
repo.save_user("alice", {"name": "Alice", "email": "[email protected]"})
|
||||||
|
user = repo.get_user("alice")
|
||||||
|
repo.delete_user("alice")
|
||||||
|
```
|
||||||
|
|
||||||
### Subclassing in your own project
|
### Subclassing in your own project
|
||||||
|
|
||||||
```python
|
```python
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
from python_repositories import RedisAdapter
|
from python_repositories import RedisAdapter
|
||||||
|
|
||||||
class UserRepository(RedisAdapter):
|
class UserRepository(RedisAdapter):
|
||||||
def _key(self, user_id: str) -> str:
|
def _key(self, user_id: str) -> str:
|
||||||
return f"user:{user_id}"
|
return f"user:{user_id}"
|
||||||
|
|
||||||
def get_user(self, user_id: str) -> dict | None:
|
def get_user(self, user_id: str) -> dict[str, Any] | None:
|
||||||
return self.get(self._key(user_id))
|
return self.get(self._key(user_id))
|
||||||
|
|
||||||
def save_user(self, user_id: str, user: dict) -> None:
|
def save_user(self, user_id: str, user: dict[str, Any]) -> None:
|
||||||
self.set(self._key(user_id), user)
|
self.set(self._key(user_id), user)
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -130,8 +190,11 @@ from python_repositories import (
|
|||||||
MinioAdapter,
|
MinioAdapter,
|
||||||
MinioConfig,
|
MinioConfig,
|
||||||
ObjectRepositoryInterface,
|
ObjectRepositoryInterface,
|
||||||
|
PostgresAdapter,
|
||||||
|
PostgresConfig,
|
||||||
RedisAdapter,
|
RedisAdapter,
|
||||||
RedisConfig,
|
RedisConfig,
|
||||||
|
TableRepositoryInterface,
|
||||||
load_dotenv,
|
load_dotenv,
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
@@ -143,10 +206,38 @@ uv sync --all-extras
|
|||||||
uv run pre-commit install # once per clone — runs hooks on git commit
|
uv run pre-commit install # once per clone — runs hooks on git commit
|
||||||
uv run pytest tests/unit/ -v # fast, no Docker
|
uv run pytest tests/unit/ -v # fast, no Docker
|
||||||
uv run pytest -m "not integration" -v # all non-Docker tests
|
uv run pytest -m "not integration" -v # all non-Docker tests
|
||||||
|
uv run pytest tests/integration/redis/ -v # Redis container only
|
||||||
|
uv run pytest tests/integration/minio/ -v # MinIO container only
|
||||||
|
uv run pytest tests/integration/postgres/ -v # Postgres container only
|
||||||
uv run pytest -v # full suite (requires Docker)
|
uv run pytest -v # full suite (requires Docker)
|
||||||
```
|
```
|
||||||
|
|
||||||
Integration tests are marked with `@pytest.mark.integration` and require Docker (testcontainers). Run unit tests alone for quick local feedback.
|
Integration tests are marked with `@pytest.mark.integration` and require Docker (testcontainers). Backend-specific markers (`needs_redis`, `needs_minio`, `needs_postgres`) let you run only the containers a test module needs. Run unit tests alone for quick local feedback.
|
||||||
|
|
||||||
|
### Test organization
|
||||||
|
|
||||||
|
Unit tests live in `tests/unit/` and follow a one-to-one naming convention: `<module>_test.py` tests `python_repositories/<module path>.py`. Examples:
|
||||||
|
|
||||||
|
- `json_repository_interface.py` → `tests/unit/json_repository_interface_test.py`
|
||||||
|
- `redis_adapter.py` → `tests/unit/redis_adapter_test.py`
|
||||||
|
|
||||||
|
Add new tests to the existing file for that module rather than creating cross-cutting test files. Shared fixtures belong in `tests/conftest.py`; module-specific helpers may live in the matching test file.
|
||||||
|
|
||||||
|
### CI base image
|
||||||
|
|
||||||
|
Gitea Actions jobs use a pre-built image (`python-repositories-ci`) with Python 3.12,
|
||||||
|
`uv`, and locked dependencies baked in. The image is rebuilt nightly and when
|
||||||
|
`uv.lock` changes; see [`docs/ci-image.md`](docs/ci-image.md) for runner setup and
|
||||||
|
bootstrap order.
|
||||||
|
|
||||||
|
CI runs unit and integration tests in parallel with coverage, then merges `.coverage` artifacts in a follow-up job (via [christopherhx/gitea-\*-artifact@v4](https://github.com/christopherHX/gitea-upload-artifact) for Gitea 1.26 compatibility). Combined coverage must meet the floor in [`fail_under` in `pyproject.toml`](pyproject.toml#L45-L48); enforcement happens after merging unit and integration coverage, not on unit-only runs.
|
||||||
|
|
||||||
|
To check coverage locally (requires Docker for the full suite):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
uv run pytest --cov=python_repositories --cov-report=
|
||||||
|
uv run coverage report
|
||||||
|
```
|
||||||
|
|
||||||
`pre-commit` is included in the dev dependency group. `uv sync` installs the CLI, but git does not run hooks until you install them with `pre-commit install` (one time per clone). After that, commits run the checks defined in [`.pre-commit-config.yaml`](.pre-commit-config.yaml) (ruff, mypy, pyupgrade, prettier, and general file hygiene).
|
`pre-commit` is included in the dev dependency group. `uv sync` installs the CLI, but git does not run hooks until you install them with `pre-commit install` (one time per clone). After that, commits run the checks defined in [`.pre-commit-config.yaml`](.pre-commit-config.yaml) (ruff, mypy, pyupgrade, prettier, and general file hygiene).
|
||||||
|
|
||||||
@@ -160,12 +251,15 @@ uv run pre-commit run --all-files
|
|||||||
|
|
||||||
Releases are automated when a pull request is merged to `main`. CI reads the **merged PR title** to decide whether and how to bump the version.
|
Releases are automated when a pull request is merged to `main`. CI reads the **merged PR title** to decide whether and how to bump the version.
|
||||||
|
|
||||||
|
- **Version history:** [`CHANGELOG.md`](CHANGELOG.md)
|
||||||
|
- **Gitea releases:** [releases page](https://gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories/releases)
|
||||||
|
|
||||||
### How it works
|
### How it works
|
||||||
|
|
||||||
1. Open a PR targeting `main` (see [`.gitea/PULL_REQUEST_TEMPLATE.md`](.gitea/PULL_REQUEST_TEMPLATE.md)).
|
1. Open a PR targeting `main` (see [`.gitea/PULL_REQUEST_TEMPLATE.md`](.gitea/PULL_REQUEST_TEMPLATE.md)).
|
||||||
2. If the PR changes files under `python_repositories/`, the title **must** start with a version bump prefix (enforced by CI).
|
2. If the PR changes files under `python_repositories/`, the title **must** start with a version bump prefix (enforced by CI).
|
||||||
3. On merge, [`release.yml`](.gitea/workflows/release.yml) bumps [`pyproject.toml`](pyproject.toml) and syncs [`uv.lock`](uv.lock), commits, tags `vX.Y.Z`, creates a Gitea release with auto-generated notes, and pushes the tag.
|
3. On merge, [`release.yml`](.gitea/workflows/release.yml) bumps [`pyproject.toml`](pyproject.toml) and syncs [`uv.lock`](uv.lock), updates [`CHANGELOG.md`](CHANGELOG.md), commits, tags `vX.Y.Z`, creates a Gitea release with auto-generated notes, pushes the tag, and publishes the package to the Gitea Package Registry.
|
||||||
4. [`publish.yml`](.gitea/workflows/publish.yml) builds and publishes the package to the Gitea Package Registry.
|
4. [`publish.yml`](.gitea/workflows/publish.yml) handles manual `v*.*.*` tag pushes only (automated releases publish from `release.yml` because release commits use `[skip ci]`, which suppresses tag-push workflows).
|
||||||
|
|
||||||
Docs-, CI-, and test-only PRs do not need a prefix and will not trigger a release.
|
Docs-, CI-, and test-only PRs do not need a prefix and will not trigger a release.
|
||||||
|
|
||||||
@@ -173,9 +267,9 @@ Docs-, CI-, and test-only PRs do not need a prefix and will not trigger a releas
|
|||||||
|
|
||||||
| Prefix | Bump | Example |
|
| Prefix | Bump | Example |
|
||||||
| ------------------------- | ---------- | --------------------- |
|
| ------------------------- | ---------- | --------------------- |
|
||||||
| `[patch]` or `[fix]` | patch | `0.3.1` → `0.3.2` |
|
| `[patch]` or `[fix]` | patch | `1.2.3` → `1.2.4` |
|
||||||
| `[minor]` or `[feat]` | minor | `0.3.1` → `0.4.0` |
|
| `[minor]` or `[feat]` | minor | `1.2.3` → `1.3.0` |
|
||||||
| `[major]` or `[breaking]` | major | `0.3.1` → `1.0.0` |
|
| `[major]` or `[breaking]` | major | `1.2.3` → `2.0.0` |
|
||||||
| _(none)_ | no release | docs / CI / deps only |
|
| _(none)_ | no release | docs / CI / deps only |
|
||||||
|
|
||||||
Example titles:
|
Example titles:
|
||||||
@@ -185,8 +279,8 @@ Example titles:
|
|||||||
|
|
||||||
### Release notes
|
### Release notes
|
||||||
|
|
||||||
Release notes are generated from commits since the previous tag (see [`scripts/ci/generate-release-notes.sh`](scripts/ci/generate-release-notes.sh)).
|
Release notes are generated from commits since the previous tag (see [`scripts/ci/generate-release-notes.sh`](scripts/ci/generate-release-notes.sh)). The same content is appended to [`CHANGELOG.md`](CHANGELOG.md) on each release (see [`scripts/ci/update-changelog.sh`](scripts/ci/update-changelog.sh)).
|
||||||
|
|
||||||
### Manual release
|
### Manual release
|
||||||
|
|
||||||
You can still push a `v*.*.*` tag manually; `publish.yml` will build and publish. The current baseline version is **0.3.1**.
|
You can still push a `v*.*.*` tag manually; `publish.yml` will build and publish. The current released version is in [`pyproject.toml`](pyproject.toml) (and on the latest `v*.*.*` tag).
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# CI job image for Gitea Actions (act_runner requires Node.js in job containers).
|
||||||
|
FROM node:20-bookworm
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends \
|
||||||
|
ca-certificates \
|
||||||
|
curl \
|
||||||
|
git \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
COPY --from=docker:27-cli /usr/local/bin/docker /usr/local/bin/docker
|
||||||
|
COPY --from=ghcr.io/astral-sh/uv:0.7.0 /uv /usr/local/bin/uv
|
||||||
|
|
||||||
|
ENV UV_PYTHON_INSTALL_DIR=/opt/uv-python \
|
||||||
|
UV_LINK_MODE=copy
|
||||||
|
|
||||||
|
COPY .python-version /tmp/.python-version
|
||||||
|
RUN uv python install "$(cat /tmp/.python-version)"
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY pyproject.toml uv.lock .python-version ./
|
||||||
|
|
||||||
|
ENV PATH="/app/.venv/bin:${PATH}"
|
||||||
|
|
||||||
|
RUN --mount=type=secret,id=uv_token \
|
||||||
|
UV_INDEX_GITEA_USERNAME=ci-bot \
|
||||||
|
UV_INDEX_GITEA_PASSWORD="$(cat /run/secrets/uv_token)" \
|
||||||
|
uv sync --all-extras --frozen --no-install-project
|
||||||
@@ -0,0 +1,169 @@
|
|||||||
|
# CI base image
|
||||||
|
|
||||||
|
This repository uses a **per-repo Docker image** for Gitea Actions jobs instead of
|
||||||
|
installing Python and `uv` on every run. Infrastructure images (redis, minio, etc.)
|
||||||
|
are cached cluster-wide via Harbor (see homelab-platform
|
||||||
|
[`docs/harbor-registry-mirror.md`](https://gitea.lille-vemmelund.dk/LilleVemmelund/homelab-platform/src/branch/main/docs/harbor-registry-mirror.md)).
|
||||||
|
|
||||||
|
## Image contents
|
||||||
|
|
||||||
|
Built from [`docker/ci/Dockerfile`](../docker/ci/Dockerfile):
|
||||||
|
|
||||||
|
- Node.js 20 (required by act_runner job containers)
|
||||||
|
- Python 3.12 (installed via `uv python install` from [`.python-version`](../.python-version)) and pinned `uv` 0.7.0
|
||||||
|
- Docker CLI (integration tests via testcontainers)
|
||||||
|
- Dev dependencies from `uv.lock` (`uv sync --all-extras --no-install-project`)
|
||||||
|
|
||||||
|
Published to the Gitea container registry (owner segment must be lowercase for Docker):
|
||||||
|
|
||||||
|
- `gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:latest`
|
||||||
|
- `gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:YYYYMMDDHHmm` (timestamped rollback tag)
|
||||||
|
|
||||||
|
## Rebuild triggers
|
||||||
|
|
||||||
|
[`ci-image.yml`](../.gitea/workflows/ci-image.yml) runs on:
|
||||||
|
|
||||||
|
- Nightly cron (`0 2 * * *` UTC)
|
||||||
|
- Manual `workflow_dispatch`
|
||||||
|
- Push to `main` when `pyproject.toml`, `uv.lock`, or `docker/ci/**` change
|
||||||
|
|
||||||
|
## Workflow usage
|
||||||
|
|
||||||
|
Python jobs use `runs-on: python-repositories-ci` and a fast incremental sync:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
runs-on: python-repositories-ci
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Sync dependencies
|
||||||
|
env:
|
||||||
|
UV_LINK_MODE: copy
|
||||||
|
UV_INDEX_GITEA_USERNAME: ci-bot
|
||||||
|
UV_INDEX_GITEA_PASSWORD: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
run: uv sync --all-extras --frozen
|
||||||
|
```
|
||||||
|
|
||||||
|
`ci-image.yml` uses `runs-on: ubuntu-latest` so it can bootstrap before the custom
|
||||||
|
image exists.
|
||||||
|
|
||||||
|
## Registry authentication
|
||||||
|
|
||||||
|
act_runner pulls the job image **before any workflow step runs**, so a `docker
|
||||||
|
login` step inside a job cannot authenticate that pull. Authentication must be
|
||||||
|
configured on the runner (or via a job-level `container.credentials` block — not
|
||||||
|
used here).
|
||||||
|
|
||||||
|
### k8s Gitea runners (automatic)
|
||||||
|
|
||||||
|
The homelab-platform runners mount Gitea registry credentials automatically:
|
||||||
|
|
||||||
|
- Secret: `gitea-runners/gitea-registry-dockerconfig` (created by
|
||||||
|
[`scripts/create-gitea-registry-secret.sh`](https://gitea.lille-vemmelund.dk/LilleVemmelund/homelab-platform/src/branch/main/scripts/create-gitea-registry-secret.sh))
|
||||||
|
- Mounted at `/root/.docker/config.json` on the **runner** container (not DinD)
|
||||||
|
- Configured in
|
||||||
|
[`platform/gitea-runners/values.yaml`](https://gitea.lille-vemmelund.dk/LilleVemmelund/homelab-platform/src/branch/main/platform/gitea-runners/values.yaml)
|
||||||
|
|
||||||
|
No manual `docker login` is required on the in-cluster runners once the secret
|
||||||
|
exists. To create or rotate credentials:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export KUBECONFIG=/path/to/homelab-cluster/talos/_out/kubeconfig
|
||||||
|
export GITEA_REGISTRY_USERNAME='ci-bot'
|
||||||
|
export GITEA_REGISTRY_PASSWORD='personal-access-token-with-read-package'
|
||||||
|
bash scripts/create-gitea-registry-secret.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
Then restart runner pods so they pick up the updated secret. See homelab-platform
|
||||||
|
[`docs/gitea-actions-runners.md`](https://gitea.lille-vemmelund.dk/LilleVemmelund/homelab-platform/src/branch/main/docs/gitea-actions-runners.md)
|
||||||
|
for full runner setup.
|
||||||
|
|
||||||
|
Verify on a running pod:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
kubectl -n gitea-runners exec homelab-cluster-gitea-runner-0 -c runner -- \
|
||||||
|
test -f /root/.docker/config.json && echo "registry auth mounted"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Standalone runners (e.g. Unraid `homelab`)
|
||||||
|
|
||||||
|
The 4th runner is outside the k8s cluster and does **not** get the automatic
|
||||||
|
mount. Configure registry auth manually on that host:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker login gitea.lille-vemmelund.dk -u ci-bot -p <token>
|
||||||
|
```
|
||||||
|
|
||||||
|
Also add the `python-repositories-ci` label to that runner's act_runner config.
|
||||||
|
|
||||||
|
### `ci-image.yml` push login
|
||||||
|
|
||||||
|
The build workflow still runs `docker login` before `docker push`. That step
|
||||||
|
authenticates **DinD inside the job** for pushing the image to Gitea — a different
|
||||||
|
code path from act_runner pulling the job container.
|
||||||
|
|
||||||
|
## Runner label
|
||||||
|
|
||||||
|
Jobs use the `python-repositories-ci` act_runner label, configured in
|
||||||
|
homelab-platform
|
||||||
|
[`platform/gitea-runners/values.yaml`](https://gitea.lille-vemmelund.dk/LilleVemmelund/homelab-platform/src/branch/main/platform/gitea-runners/values.yaml):
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
python-repositories-ci:docker://gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:latest
|
||||||
|
```
|
||||||
|
|
||||||
|
After label changes, roll runner pods so they re-register with Gitea.
|
||||||
|
|
||||||
|
## Bootstrap order
|
||||||
|
|
||||||
|
1. Ensure homelab-platform runners have `gitea-registry-dockerconfig` and the
|
||||||
|
`python-repositories-ci` label (see homelab-platform docs).
|
||||||
|
2. Merge `ci-image.yml`, `docker/ci/Dockerfile`, and workflow migrations to `main`.
|
||||||
|
3. Seed the registry with a first image (see below).
|
||||||
|
4. Confirm a test workflow job starts on `python-repositories-ci`.
|
||||||
|
|
||||||
|
Until step 3 completes, jobs targeting `python-repositories-ci` will fail because
|
||||||
|
the image does not exist in the Gitea registry yet.
|
||||||
|
|
||||||
|
### Seed the image
|
||||||
|
|
||||||
|
**After merge to `main`:** Actions → **Build CI Image** → **Run workflow**.
|
||||||
|
|
||||||
|
**Before merge (e.g. PR branch):** the workflow file is not on `main` yet — build
|
||||||
|
and push locally with [`scripts/ci/build-ci-image.sh`](../scripts/ci/build-ci-image.sh):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export CI_RUNNER_TOKEN='ci-bot-personal-access-token'
|
||||||
|
bash scripts/ci/build-ci-image.sh --push
|
||||||
|
```
|
||||||
|
|
||||||
|
Run from the repo root on the branch you want to test. Runners pull
|
||||||
|
`gitea.lille-vemmelund.dk/lillevemmelund/python-repositories-ci:latest` from the registry;
|
||||||
|
they do not care which git branch built it.
|
||||||
|
|
||||||
|
Override registry settings if needed:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export REGISTRY=gitea.lille-vemmelund.dk
|
||||||
|
export REGISTRY_USER=ci-bot
|
||||||
|
export CI_RUNNER_TOKEN='...'
|
||||||
|
bash scripts/ci/build-ci-image.sh --push
|
||||||
|
```
|
||||||
|
|
||||||
|
## Local build
|
||||||
|
|
||||||
|
Build only (no registry login or push):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
export CI_RUNNER_TOKEN='ci-bot-personal-access-token'
|
||||||
|
bash scripts/ci/build-ci-image.sh --local
|
||||||
|
```
|
||||||
|
|
||||||
|
Or manually:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
echo "$CI_RUNNER_TOKEN" > /tmp/uv_token
|
||||||
|
docker build -f docker/ci/Dockerfile \
|
||||||
|
--secret id=uv_token,src=/tmp/uv_token \
|
||||||
|
-t python-repositories-ci:local .
|
||||||
|
rm -f /tmp/uv_token
|
||||||
|
```
|
||||||
+37
-7
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "python-repositories"
|
name = "python-repositories"
|
||||||
version = "0.5.0"
|
version = "2.2.0"
|
||||||
description = "Various python repository interfaces exposed as a python package."
|
description = "Various python repository interfaces exposed as a python package."
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Brian Bjarke Jensen", email = "[email protected]" }
|
{ name = "Brian Bjarke Jensen", email = "[email protected]" }
|
||||||
@@ -10,6 +10,7 @@ requires-python = ">=3.12"
|
|||||||
license = { text = "MIT" }
|
license = { text = "MIT" }
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
|
"Programming Language :: Python :: 3.12",
|
||||||
"License :: OSI Approved :: MIT License",
|
"License :: OSI Approved :: MIT License",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
]
|
]
|
||||||
@@ -19,6 +20,11 @@ dependencies = [
|
|||||||
"structlog>=25.4.0",
|
"structlog>=25.4.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[project.urls]
|
||||||
|
Repository = "https://gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories"
|
||||||
|
Changelog = "https://gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories/src/branch/main/CHANGELOG.md"
|
||||||
|
Releases = "https://gitea.lille-vemmelund.dk/LilleVemmelund/python-repositories/releases"
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
redis = [
|
redis = [
|
||||||
"redis>=6.4.0",
|
"redis>=6.4.0",
|
||||||
@@ -26,6 +32,9 @@ redis = [
|
|||||||
minio = [
|
minio = [
|
||||||
"minio>=7.2.16",
|
"minio>=7.2.16",
|
||||||
]
|
]
|
||||||
|
postgres = [
|
||||||
|
"psycopg[binary]>=3.2.0",
|
||||||
|
]
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["hatchling"]
|
requires = ["hatchling"]
|
||||||
@@ -33,12 +42,22 @@ build-backend = "hatchling.build"
|
|||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
testpaths = ["tests"]
|
testpaths = ["tests"]
|
||||||
pythonpath = ["."]
|
|
||||||
addopts = "--import-mode=importlib"
|
addopts = "--import-mode=importlib"
|
||||||
markers = [
|
markers = [
|
||||||
"integration: tests requiring Docker containers (deselect with '-m \"not integration\"')",
|
"integration: tests requiring Docker containers (deselect with '-m \"not integration\"')",
|
||||||
|
"needs_redis: integration test requiring a Redis container",
|
||||||
|
"needs_minio: integration test requiring a MinIO container",
|
||||||
|
"needs_postgres: integration test requiring a Postgres container",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[tool.coverage.run]
|
||||||
|
source = ["python_repositories"]
|
||||||
|
|
||||||
|
[tool.coverage.report]
|
||||||
|
fail_under = 100
|
||||||
|
show_missing = true
|
||||||
|
precision = 2
|
||||||
|
|
||||||
[tool.uv.sources]
|
[tool.uv.sources]
|
||||||
python-utils = { index = "gitea" }
|
python-utils = { index = "gitea" }
|
||||||
|
|
||||||
@@ -52,6 +71,18 @@ name = "gitea"
|
|||||||
url = "https://gitea.lille-vemmelund.dk/api/packages/brian/pypi/simple/"
|
url = "https://gitea.lille-vemmelund.dk/api/packages/brian/pypi/simple/"
|
||||||
explicit = true
|
explicit = true
|
||||||
|
|
||||||
|
[tool.ruff]
|
||||||
|
line-length = 88
|
||||||
|
target-version = "py312"
|
||||||
|
|
||||||
|
[tool.ruff.lint]
|
||||||
|
extend-select = ["I"]
|
||||||
|
|
||||||
|
[tool.ruff.lint.isort]
|
||||||
|
known-first-party = ["python_repositories", "tests"]
|
||||||
|
combine-as-imports = true
|
||||||
|
force-sort-within-sections = true
|
||||||
|
|
||||||
[tool.mypy]
|
[tool.mypy]
|
||||||
python_version = "3.12"
|
python_version = "3.12"
|
||||||
warn_return_any = true # nudge to use stricter types
|
warn_return_any = true # nudge to use stricter types
|
||||||
@@ -79,13 +110,12 @@ ignore_missing_imports = true
|
|||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
dev = [
|
dev = [
|
||||||
"mypy>=1.17.1",
|
"mypy>=2.1.0",
|
||||||
"pre-commit>=4.3.0",
|
"pre-commit>=4.6.0",
|
||||||
"pytest>=8.4.1",
|
"pytest>=8.4.1",
|
||||||
"pytest-cov>=7.0.0",
|
"pytest-cov>=7.0.0",
|
||||||
"pyupgrade>=3.20.0",
|
"pyupgrade>=3.21.2",
|
||||||
"ruff>=0.12.11",
|
"ruff>=0.15.20",
|
||||||
"safety>=3.6.0",
|
"safety>=3.6.0",
|
||||||
"testcontainers>=4.13.0",
|
"testcontainers>=4.13.0",
|
||||||
"types-redis>=4.6.0.20241004",
|
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -6,17 +6,19 @@ from typing import TYPE_CHECKING
|
|||||||
|
|
||||||
# Interfaces are always available; they have no optional backend dependencies.
|
# Interfaces are always available; they have no optional backend dependencies.
|
||||||
from . import adapters
|
from . import adapters
|
||||||
from .config import MinioConfig, RedisConfig, load_dotenv
|
from .config import MinioConfig, PostgresConfig, RedisConfig, load_dotenv
|
||||||
from .interfaces import (
|
from .interfaces import (
|
||||||
ConnectionAwareInterface,
|
ConnectionAwareInterface,
|
||||||
ContextAwareInterface,
|
ContextAwareInterface,
|
||||||
JsonRepositoryInterface,
|
JsonRepositoryInterface,
|
||||||
ObjectRepositoryInterface,
|
ObjectRepositoryInterface,
|
||||||
|
TableRepositoryInterface,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Adapters are imported only for static type checkers; runtime loading is delegated below.
|
# Adapters are imported only for static type checkers; runtime loading is delegated below.
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .adapters.minio_adapter import MinioAdapter as MinioAdapter
|
from .adapters.minio_adapter import MinioAdapter as MinioAdapter
|
||||||
|
from .adapters.postgres_adapter import PostgresAdapter as PostgresAdapter
|
||||||
from .adapters.redis_adapter import RedisAdapter as RedisAdapter
|
from .adapters.redis_adapter import RedisAdapter as RedisAdapter
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
@@ -25,7 +27,9 @@ __all__ = [
|
|||||||
"JsonRepositoryInterface",
|
"JsonRepositoryInterface",
|
||||||
"MinioConfig",
|
"MinioConfig",
|
||||||
"ObjectRepositoryInterface",
|
"ObjectRepositoryInterface",
|
||||||
|
"PostgresConfig",
|
||||||
"RedisConfig",
|
"RedisConfig",
|
||||||
|
"TableRepositoryInterface",
|
||||||
"load_dotenv",
|
"load_dotenv",
|
||||||
*adapters.__all__,
|
*adapters.__all__,
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ from typing import TYPE_CHECKING
|
|||||||
# Adapters are imported only for static type checkers; runtime loading is deferred below.
|
# Adapters are imported only for static type checkers; runtime loading is deferred below.
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .minio_adapter import MinioAdapter
|
from .minio_adapter import MinioAdapter
|
||||||
|
from .postgres_adapter import PostgresAdapter
|
||||||
from .redis_adapter import RedisAdapter
|
from .redis_adapter import RedisAdapter
|
||||||
|
|
||||||
# Map public adapter names to their defining module and class.
|
# Map public adapter names to their defining module and class.
|
||||||
@@ -20,11 +21,13 @@ if TYPE_CHECKING:
|
|||||||
_LAZY_EXPORTS = {
|
_LAZY_EXPORTS = {
|
||||||
"RedisAdapter": (".redis_adapter", "RedisAdapter"),
|
"RedisAdapter": (".redis_adapter", "RedisAdapter"),
|
||||||
"MinioAdapter": (".minio_adapter", "MinioAdapter"),
|
"MinioAdapter": (".minio_adapter", "MinioAdapter"),
|
||||||
|
"PostgresAdapter": (".postgres_adapter", "PostgresAdapter"),
|
||||||
}
|
}
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"RedisAdapter",
|
"RedisAdapter",
|
||||||
"MinioAdapter",
|
"MinioAdapter",
|
||||||
|
"PostgresAdapter",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import time
|
|
||||||
from abc import abstractmethod
|
from abc import abstractmethod
|
||||||
|
import time
|
||||||
from typing import Self
|
from typing import Self
|
||||||
|
|
||||||
import structlog
|
import structlog
|
||||||
@@ -22,6 +22,7 @@ class ConnectionAwareAdapter(ConnectionAwareInterface, ContextAwareInterface):
|
|||||||
|
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
self.logger = structlog.get_logger(self.__class__.__name__)
|
self.logger = structlog.get_logger(self.__class__.__name__)
|
||||||
|
self._client_injected = False
|
||||||
self._health_check_at: float | None = None
|
self._health_check_at: float | None = None
|
||||||
self._health_check_ok: bool = False
|
self._health_check_ok: bool = False
|
||||||
|
|
||||||
@@ -57,6 +58,27 @@ class ConnectionAwareAdapter(ConnectionAwareInterface, ContextAwareInterface):
|
|||||||
def _probe_connection(self) -> bool:
|
def _probe_connection(self) -> bool:
|
||||||
"""Backend-specific liveness check; called only when client is ready."""
|
"""Backend-specific liveness check; called only when client is ready."""
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def _validate_injected_client(self) -> None:
|
||||||
|
"""Verify an injected client is reachable; raise ConnectionError on failure."""
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def _establish_connection(self) -> None:
|
||||||
|
"""Create a backend client and set internal connection state."""
|
||||||
|
|
||||||
|
def connect(self) -> None:
|
||||||
|
"""Connect to the backend; idempotent when already connected and healthy."""
|
||||||
|
if self._client_injected:
|
||||||
|
self._validate_injected_client()
|
||||||
|
self._invalidate_health_cache()
|
||||||
|
return
|
||||||
|
if self._is_client_ready() and self.is_connected():
|
||||||
|
self.logger.info("Already connected", connection_name=self.connection_name)
|
||||||
|
return
|
||||||
|
self.disconnect()
|
||||||
|
self._establish_connection()
|
||||||
|
self._invalidate_health_cache()
|
||||||
|
|
||||||
def is_connected(self) -> bool:
|
def is_connected(self) -> bool:
|
||||||
"""Check if connected to the backend."""
|
"""Check if connected to the backend."""
|
||||||
if not self._is_client_ready():
|
if not self._is_client_ready():
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
"""Definition of MinioAdapter class."""
|
"""Definition of MinioAdapter class."""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
|
||||||
from python_repositories.adapters.connection_aware_adapter import (
|
from python_repositories.adapters.connection_aware_adapter import (
|
||||||
@@ -18,7 +19,7 @@ except ImportError as exc:
|
|||||||
) from exc
|
) from exc
|
||||||
|
|
||||||
|
|
||||||
class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
class MinioAdapter(ConnectionAwareAdapter, ObjectRepositoryInterface):
|
||||||
"""Minio adapter exposing basic CRUD functionality."""
|
"""Minio adapter exposing basic CRUD functionality."""
|
||||||
|
|
||||||
endpoint_env_var_name: str = "MINIO_ENDPOINT"
|
endpoint_env_var_name: str = "MINIO_ENDPOINT"
|
||||||
@@ -26,6 +27,7 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
secret_key_env_var_name: str = "MINIO_SECRET_KEY"
|
secret_key_env_var_name: str = "MINIO_SECRET_KEY"
|
||||||
bucket_env_var_name: str = "MINIO_BUCKET"
|
bucket_env_var_name: str = "MINIO_BUCKET"
|
||||||
secure_env_var_name: str = "MINIO_SECURE"
|
secure_env_var_name: str = "MINIO_SECURE"
|
||||||
|
create_bucket_if_missing_env_var_name: str = "MINIO_CREATE_BUCKET_IF_MISSING"
|
||||||
chunk_size: int = 5 * 2**20 # 5 MiB
|
chunk_size: int = 5 * 2**20 # 5 MiB
|
||||||
connection_name: str = "Minio"
|
connection_name: str = "Minio"
|
||||||
|
|
||||||
@@ -36,15 +38,16 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
client: minio.Minio | None = None,
|
client: minio.Minio | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
super().__init__()
|
super().__init__()
|
||||||
if config is None:
|
if client is not None and config is None:
|
||||||
if client is not None:
|
|
||||||
raise ValueError("config is required when client is provided")
|
raise ValueError("config is required when client is provided")
|
||||||
|
if config is None:
|
||||||
config = MinioConfig.from_env(
|
config = MinioConfig.from_env(
|
||||||
self.endpoint_env_var_name,
|
self.endpoint_env_var_name,
|
||||||
self.access_key_env_var_name,
|
self.access_key_env_var_name,
|
||||||
self.secret_key_env_var_name,
|
self.secret_key_env_var_name,
|
||||||
self.bucket_env_var_name,
|
self.bucket_env_var_name,
|
||||||
self.secure_env_var_name,
|
self.secure_env_var_name,
|
||||||
|
self.create_bucket_if_missing_env_var_name,
|
||||||
)
|
)
|
||||||
self._config = config
|
self._config = config
|
||||||
self._client_injected = client is not None
|
self._client_injected = client is not None
|
||||||
@@ -56,23 +59,17 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
def _is_client_ready(self) -> bool:
|
def _is_client_ready(self) -> bool:
|
||||||
return self._client is not None and self._bucket_name is not None
|
return self._client is not None and self._bucket_name is not None
|
||||||
|
|
||||||
def connect(self) -> None:
|
def _validate_injected_client(self) -> None:
|
||||||
"""Connect to the Minio server."""
|
if self._client is None:
|
||||||
if self._client_injected:
|
return
|
||||||
if self._client is not None:
|
|
||||||
try:
|
try:
|
||||||
_ = self._client.list_buckets()
|
_ = self._client.list_buckets()
|
||||||
except Exception as exc: # pylint: disable=broad-except
|
except Exception as exc: # pylint: disable=broad-except
|
||||||
raise ConnectionError(
|
raise ConnectionError(
|
||||||
f"Could not connect to Minio at {self._config.endpoint}"
|
f"Could not connect to Minio at {self._config.endpoint}"
|
||||||
) from exc
|
) from exc
|
||||||
self._invalidate_health_cache()
|
|
||||||
return
|
def _establish_connection(self) -> None:
|
||||||
if self._client is not None and self.is_connected():
|
|
||||||
self.logger.info("Already connected to Minio")
|
|
||||||
return
|
|
||||||
if self._client is not None:
|
|
||||||
self.disconnect()
|
|
||||||
endpoint = self._config.endpoint
|
endpoint = self._config.endpoint
|
||||||
access_key = self._config.access_key
|
access_key = self._config.access_key
|
||||||
secret_key = self._config.secret_key
|
secret_key = self._config.secret_key
|
||||||
@@ -88,11 +85,14 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
except Exception as exc: # pylint: disable=broad-except
|
except Exception as exc: # pylint: disable=broad-except
|
||||||
raise ConnectionError(f"Could not connect to Minio at {endpoint}") from exc
|
raise ConnectionError(f"Could not connect to Minio at {endpoint}") from exc
|
||||||
if not client.bucket_exists(bucket):
|
if not client.bucket_exists(bucket):
|
||||||
self.logger.info(f"Creating bucket '{bucket}'")
|
if not self._config.create_bucket_if_missing:
|
||||||
|
raise ConnectionError(
|
||||||
|
f"Bucket '{bucket}' does not exist on Minio at {endpoint}"
|
||||||
|
)
|
||||||
|
self.logger.info("Creating bucket", bucket=bucket)
|
||||||
client.make_bucket(bucket)
|
client.make_bucket(bucket)
|
||||||
self._client = client
|
self._client = client
|
||||||
self._bucket_name = bucket
|
self._bucket_name = bucket
|
||||||
self._invalidate_health_cache()
|
|
||||||
|
|
||||||
def disconnect(self) -> None:
|
def disconnect(self) -> None:
|
||||||
"""Disconnect from the Minio server."""
|
"""Disconnect from the Minio server."""
|
||||||
@@ -114,12 +114,17 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
data: BytesIO,
|
data: BytesIO,
|
||||||
content_type: str = "application/octet-stream",
|
content_type: str = "application/octet-stream",
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Put an object into the Minio bucket."""
|
"""Put an object into the Minio bucket.
|
||||||
|
|
||||||
|
Accepts zero-byte ``BytesIO``. A zero-byte object is returned by
|
||||||
|
``get()`` as an empty buffer, not ``None``. Use ``delete()`` to remove
|
||||||
|
an object entirely.
|
||||||
|
"""
|
||||||
# Check input
|
# Check input
|
||||||
if not isinstance(object_name, str) or len(object_name) == 0:
|
if not isinstance(object_name, str) or len(object_name) == 0:
|
||||||
raise ValueError("object_name must be a non-empty string")
|
raise ValueError("object_name must be a non-empty string")
|
||||||
if not isinstance(data, BytesIO) or data.getbuffer().nbytes == 0:
|
if not isinstance(data, BytesIO):
|
||||||
raise ValueError("data must be a non-empty BytesIO object")
|
raise ValueError("data must be a BytesIO object")
|
||||||
if not isinstance(content_type, str) or len(content_type) == 0:
|
if not isinstance(content_type, str) or len(content_type) == 0:
|
||||||
raise ValueError("content_type must be a non-empty string")
|
raise ValueError("content_type must be a non-empty string")
|
||||||
# Check connection
|
# Check connection
|
||||||
@@ -139,11 +144,16 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
content_type=content_type,
|
content_type=content_type,
|
||||||
)
|
)
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
f"Put object '{object_name}' into bucket '{self._bucket_name}'"
|
"Put object", object_name=object_name, bucket=self._bucket_name
|
||||||
)
|
)
|
||||||
|
|
||||||
def get(self, object_name: str) -> BytesIO | None:
|
def get(self, object_name: str) -> BytesIO | None:
|
||||||
"""Get an object from the Minio bucket."""
|
"""Get an object from the Minio bucket.
|
||||||
|
|
||||||
|
Returns ``None`` when the object does not exist. Returns an empty
|
||||||
|
``BytesIO`` for a zero-byte object. Use ``value is not None`` to test
|
||||||
|
existence.
|
||||||
|
"""
|
||||||
# Check input
|
# Check input
|
||||||
if not isinstance(object_name, str) or len(object_name) == 0:
|
if not isinstance(object_name, str) or len(object_name) == 0:
|
||||||
raise ValueError("object_name must be a non-empty string")
|
raise ValueError("object_name must be a non-empty string")
|
||||||
@@ -152,6 +162,7 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
assert self._client is not None and self._bucket_name is not None
|
assert self._client is not None and self._bucket_name is not None
|
||||||
# Get data from bucket
|
# Get data from bucket
|
||||||
# N.B. bucket name is set when connecting
|
# N.B. bucket name is set when connecting
|
||||||
|
response = None
|
||||||
try:
|
try:
|
||||||
response = self._client.get_object(
|
response = self._client.get_object(
|
||||||
bucket_name=self._bucket_name,
|
bucket_name=self._bucket_name,
|
||||||
@@ -163,19 +174,22 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
buffer.write(chunk)
|
buffer.write(chunk)
|
||||||
buffer.seek(0)
|
buffer.seek(0)
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
f"Got object '{object_name}' from bucket '{self._bucket_name}'"
|
"Got object", object_name=object_name, bucket=self._bucket_name
|
||||||
)
|
)
|
||||||
return buffer
|
return buffer
|
||||||
except minio.S3Error as exc:
|
except minio.S3Error as exc:
|
||||||
if exc.code == "NoSuchKey":
|
if exc.code == "NoSuchKey":
|
||||||
self.logger.warning(
|
self.logger.warning(
|
||||||
f"Object '{object_name}' not found in bucket '{self._bucket_name}'"
|
"Object not found",
|
||||||
|
object_name=object_name,
|
||||||
|
bucket=self._bucket_name,
|
||||||
)
|
)
|
||||||
else:
|
|
||||||
self.logger.error(repr(exc))
|
|
||||||
except Exception as exc: # pylint: disable=broad-except
|
|
||||||
self.logger.error(repr(exc))
|
|
||||||
return None
|
return None
|
||||||
|
raise
|
||||||
|
finally:
|
||||||
|
if response is not None:
|
||||||
|
response.close()
|
||||||
|
response.release_conn()
|
||||||
|
|
||||||
def delete(self, object_name: str) -> None:
|
def delete(self, object_name: str) -> None:
|
||||||
"""Delete an object from the Minio bucket."""
|
"""Delete an object from the Minio bucket."""
|
||||||
@@ -192,7 +206,7 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
object_name=object_name,
|
object_name=object_name,
|
||||||
)
|
)
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
f"Deleted object '{object_name}' from bucket '{self._bucket_name}'"
|
"Deleted object", object_name=object_name, bucket=self._bucket_name
|
||||||
)
|
)
|
||||||
|
|
||||||
def list_objects(self, prefix: str = "") -> list[str]:
|
def list_objects(self, prefix: str = "") -> list[str]:
|
||||||
@@ -214,6 +228,9 @@ class MinioAdapter(ObjectRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
obj.object_name for obj in objects if obj.object_name is not None
|
obj.object_name for obj in objects if obj.object_name is not None
|
||||||
]
|
]
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
f"Listed {len(object_names)} object(s) in bucket '{self._bucket_name}' with prefix '{prefix}'"
|
"Listed objects",
|
||||||
|
count=len(object_names),
|
||||||
|
bucket=self._bucket_name,
|
||||||
|
prefix=prefix,
|
||||||
)
|
)
|
||||||
return object_names
|
return object_names
|
||||||
|
|||||||
@@ -0,0 +1,230 @@
|
|||||||
|
"""Definition of PostgresAdapter class."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from python_repositories.adapters.connection_aware_adapter import (
|
||||||
|
ConnectionAwareAdapter,
|
||||||
|
)
|
||||||
|
from python_repositories.config import PostgresConfig
|
||||||
|
from python_repositories.interfaces import TableRepositoryInterface
|
||||||
|
|
||||||
|
try:
|
||||||
|
import psycopg
|
||||||
|
from psycopg import sql
|
||||||
|
from psycopg.errors import UndefinedTable
|
||||||
|
from psycopg.rows import dict_row
|
||||||
|
except ImportError as exc:
|
||||||
|
raise ImportError(
|
||||||
|
"Postgres support requires the postgres extra. "
|
||||||
|
"Install with: pip install python-repositories[postgres]"
|
||||||
|
) from exc
|
||||||
|
|
||||||
|
|
||||||
|
class PostgresAdapter(ConnectionAwareAdapter, TableRepositoryInterface):
|
||||||
|
"""Postgres adapter exposing basic table CRUD functionality."""
|
||||||
|
|
||||||
|
uri_env_var_name: str = "POSTGRES_URI"
|
||||||
|
table_env_var_name: str = "POSTGRES_TABLE"
|
||||||
|
primary_key_env_var_name: str = "POSTGRES_PRIMARY_KEY"
|
||||||
|
connection_name: str = "Postgres"
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self,
|
||||||
|
*,
|
||||||
|
config: PostgresConfig | None = None,
|
||||||
|
client: psycopg.Connection[Any] | None = None,
|
||||||
|
) -> None:
|
||||||
|
super().__init__()
|
||||||
|
if client is not None and config is None:
|
||||||
|
raise ValueError("config is required when client is provided")
|
||||||
|
if config is None:
|
||||||
|
config = PostgresConfig.from_env(
|
||||||
|
self.uri_env_var_name,
|
||||||
|
self.table_env_var_name,
|
||||||
|
self.primary_key_env_var_name,
|
||||||
|
)
|
||||||
|
self._config = config
|
||||||
|
self._client_injected = client is not None
|
||||||
|
self._client: psycopg.Connection[Any] | None = client
|
||||||
|
if self._client_injected:
|
||||||
|
self._invalidate_health_cache()
|
||||||
|
|
||||||
|
def _is_client_ready(self) -> bool:
|
||||||
|
return self._client is not None
|
||||||
|
|
||||||
|
def _table_identifier(self) -> sql.Identifier:
|
||||||
|
return sql.Identifier(self._config.table)
|
||||||
|
|
||||||
|
def _primary_key_identifier(self) -> sql.Identifier:
|
||||||
|
return sql.Identifier(self._config.primary_key)
|
||||||
|
|
||||||
|
def _validate_injected_client(self) -> None:
|
||||||
|
if self._client is None:
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
self._run_connection_probe()
|
||||||
|
except (psycopg.Error, ConnectionError) as exc:
|
||||||
|
raise ConnectionError(
|
||||||
|
f"Could not connect to Postgres at {self._config.uri}"
|
||||||
|
) from exc
|
||||||
|
|
||||||
|
def _establish_connection(self) -> None:
|
||||||
|
uri = self._config.uri
|
||||||
|
try:
|
||||||
|
client = psycopg.connect(
|
||||||
|
uri,
|
||||||
|
row_factory=dict_row,
|
||||||
|
connect_timeout=10,
|
||||||
|
autocommit=True,
|
||||||
|
)
|
||||||
|
self._client = client
|
||||||
|
self._run_connection_probe()
|
||||||
|
except ConnectionError:
|
||||||
|
self._client = None
|
||||||
|
raise
|
||||||
|
except psycopg.Error as exc:
|
||||||
|
self._client = None
|
||||||
|
raise ConnectionError(f"Could not connect to Postgres at {uri}") from exc
|
||||||
|
|
||||||
|
def _run_connection_probe(self) -> None:
|
||||||
|
assert self._client is not None
|
||||||
|
with self._client.cursor() as cursor:
|
||||||
|
cursor.execute("SELECT 1")
|
||||||
|
try:
|
||||||
|
cursor.execute(
|
||||||
|
sql.SQL("SELECT 1 FROM {} LIMIT 0").format(self._table_identifier())
|
||||||
|
)
|
||||||
|
except UndefinedTable as exc:
|
||||||
|
raise ConnectionError(
|
||||||
|
f"Table '{self._config.table}' does not exist on Postgres at "
|
||||||
|
f"{self._config.uri}"
|
||||||
|
) from exc
|
||||||
|
|
||||||
|
def disconnect(self) -> None:
|
||||||
|
"""Disconnect from the Postgres server."""
|
||||||
|
if self._client is not None and not self._client_injected:
|
||||||
|
self._client.close()
|
||||||
|
self._client = None
|
||||||
|
self._invalidate_health_cache()
|
||||||
|
|
||||||
|
def _probe_connection(self) -> bool:
|
||||||
|
assert self._client is not None
|
||||||
|
try:
|
||||||
|
self._run_connection_probe()
|
||||||
|
except (psycopg.Error, ConnectionError):
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
def _validate_pk(self, pk: Any) -> None:
|
||||||
|
if pk is None:
|
||||||
|
raise ValueError("Primary key must not be None")
|
||||||
|
|
||||||
|
def _validate_row(self, row: dict[str, Any]) -> None:
|
||||||
|
if not isinstance(row, dict):
|
||||||
|
raise ValueError("Row must be a dictionary")
|
||||||
|
if self._config.primary_key not in row:
|
||||||
|
raise ValueError(
|
||||||
|
f"Row must include primary key column '{self._config.primary_key}'"
|
||||||
|
)
|
||||||
|
|
||||||
|
def _validate_limit(self, limit: int | None) -> None:
|
||||||
|
if limit is not None and (not isinstance(limit, int) or limit < 0):
|
||||||
|
raise ValueError("Limit must be a non-negative integer or None")
|
||||||
|
|
||||||
|
def fetch_one(self, pk: Any) -> dict[str, Any] | None:
|
||||||
|
"""Fetch a single row by primary key."""
|
||||||
|
self._validate_pk(pk)
|
||||||
|
self._require_connected()
|
||||||
|
assert self._client is not None
|
||||||
|
query = sql.SQL("SELECT * FROM {} WHERE {} = %s").format(
|
||||||
|
self._table_identifier(),
|
||||||
|
self._primary_key_identifier(),
|
||||||
|
)
|
||||||
|
with self._client.cursor() as cursor:
|
||||||
|
cursor.execute(query, (pk,))
|
||||||
|
row = cursor.fetchone()
|
||||||
|
self.logger.debug("Fetched row", pk=pk, found=row is not None)
|
||||||
|
return row
|
||||||
|
|
||||||
|
def fetch_all(self, *, limit: int | None = None) -> list[dict[str, Any]]:
|
||||||
|
"""Fetch all rows from the configured table."""
|
||||||
|
self._validate_limit(limit)
|
||||||
|
self._require_connected()
|
||||||
|
assert self._client is not None
|
||||||
|
query = sql.SQL("SELECT * FROM {}").format(self._table_identifier())
|
||||||
|
params: tuple[Any, ...] = ()
|
||||||
|
if limit is not None:
|
||||||
|
query = sql.Composed([query, sql.SQL(" LIMIT %s")])
|
||||||
|
params = (limit,)
|
||||||
|
with self._client.cursor() as cursor:
|
||||||
|
cursor.execute(query, params)
|
||||||
|
rows = cursor.fetchall()
|
||||||
|
self.logger.debug("Fetched rows", count=len(rows), limit=limit)
|
||||||
|
return list(rows)
|
||||||
|
|
||||||
|
def upsert(self, row: dict[str, Any]) -> None:
|
||||||
|
"""Insert or update a row by primary key."""
|
||||||
|
self._validate_row(row)
|
||||||
|
self._require_connected()
|
||||||
|
assert self._client is not None
|
||||||
|
pk_col = self._config.primary_key
|
||||||
|
columns = list(row.keys())
|
||||||
|
identifiers = [sql.Identifier(column) for column in columns]
|
||||||
|
placeholders = sql.SQL(", ").join(sql.Placeholder() * len(columns))
|
||||||
|
column_list = sql.SQL(", ").join(identifiers)
|
||||||
|
update_columns = [column for column in columns if column != pk_col]
|
||||||
|
on_conflict: sql.Composed | sql.SQL
|
||||||
|
if update_columns:
|
||||||
|
update_assignments = sql.SQL(", ").join(
|
||||||
|
sql.SQL("{} = EXCLUDED.{}").format(
|
||||||
|
sql.Identifier(column),
|
||||||
|
sql.Identifier(column),
|
||||||
|
)
|
||||||
|
for column in update_columns
|
||||||
|
)
|
||||||
|
on_conflict = sql.SQL("DO UPDATE SET {}").format(update_assignments)
|
||||||
|
else:
|
||||||
|
on_conflict = sql.SQL("DO NOTHING")
|
||||||
|
query = sql.SQL("INSERT INTO {} ({}) VALUES ({}) ON CONFLICT ({}) {}").format(
|
||||||
|
self._table_identifier(),
|
||||||
|
column_list,
|
||||||
|
placeholders,
|
||||||
|
self._primary_key_identifier(),
|
||||||
|
on_conflict,
|
||||||
|
)
|
||||||
|
with self._client.cursor() as cursor:
|
||||||
|
cursor.execute(query, tuple(row[column] for column in columns))
|
||||||
|
self.logger.debug("Upserted row", pk=row[pk_col], columns=columns)
|
||||||
|
|
||||||
|
def delete(self, pk: Any) -> None:
|
||||||
|
"""Delete a row by primary key."""
|
||||||
|
self._validate_pk(pk)
|
||||||
|
self._require_connected()
|
||||||
|
assert self._client is not None
|
||||||
|
query = sql.SQL("DELETE FROM {} WHERE {} = %s").format(
|
||||||
|
self._table_identifier(),
|
||||||
|
self._primary_key_identifier(),
|
||||||
|
)
|
||||||
|
with self._client.cursor() as cursor:
|
||||||
|
cursor.execute(query, (pk,))
|
||||||
|
self.logger.debug("Deleted row", pk=pk)
|
||||||
|
|
||||||
|
def execute(
|
||||||
|
self,
|
||||||
|
sql_text: str,
|
||||||
|
params: tuple[Any, ...] = (),
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
"""Run a read SQL statement and return rows as dicts."""
|
||||||
|
if not isinstance(sql_text, str) or len(sql_text) == 0:
|
||||||
|
raise ValueError("SQL must be a non-empty string")
|
||||||
|
if not isinstance(params, tuple):
|
||||||
|
raise ValueError("Params must be a tuple")
|
||||||
|
self._require_connected()
|
||||||
|
assert self._client is not None
|
||||||
|
with self._client.cursor() as cursor:
|
||||||
|
cursor.execute(sql_text, params)
|
||||||
|
rows = cursor.fetchall()
|
||||||
|
self.logger.debug("Executed SQL", row_count=len(rows))
|
||||||
|
return list(rows)
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
"""Definition of RedisAdapter class."""
|
"""Definition of RedisAdapter class."""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
from typing import cast
|
|
||||||
|
from collections.abc import Iterator
|
||||||
|
from typing import Any, cast
|
||||||
|
|
||||||
from python_repositories.adapters.connection_aware_adapter import (
|
from python_repositories.adapters.connection_aware_adapter import (
|
||||||
ConnectionAwareAdapter,
|
ConnectionAwareAdapter,
|
||||||
@@ -19,7 +21,7 @@ except ImportError as exc:
|
|||||||
) from exc
|
) from exc
|
||||||
|
|
||||||
|
|
||||||
class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
class RedisAdapter(ConnectionAwareAdapter, JsonRepositoryInterface):
|
||||||
"""Redis adapter exposing basic CRUD functionality."""
|
"""Redis adapter exposing basic CRUD functionality."""
|
||||||
|
|
||||||
uri_env_var_name: str = "REDIS_URI"
|
uri_env_var_name: str = "REDIS_URI"
|
||||||
@@ -34,9 +36,9 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
client: redis.Redis | None = None,
|
client: redis.Redis | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
super().__init__()
|
super().__init__()
|
||||||
if config is None:
|
if client is not None and config is None:
|
||||||
if client is not None:
|
|
||||||
raise ValueError("config is required when client is provided")
|
raise ValueError("config is required when client is provided")
|
||||||
|
if config is None:
|
||||||
config = RedisConfig.from_env(self.uri_env_var_name)
|
config = RedisConfig.from_env(self.uri_env_var_name)
|
||||||
self._config = config
|
self._config = config
|
||||||
self._client_injected = client is not None
|
self._client_injected = client is not None
|
||||||
@@ -48,10 +50,9 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
def _is_client_ready(self) -> bool:
|
def _is_client_ready(self) -> bool:
|
||||||
return self._client is not None
|
return self._client is not None
|
||||||
|
|
||||||
def connect(self) -> None:
|
def _validate_injected_client(self) -> None:
|
||||||
"""Connect to the Redis server."""
|
if self._client is None:
|
||||||
if self._client_injected:
|
return
|
||||||
if self._client is not None:
|
|
||||||
try:
|
try:
|
||||||
if not self._client.ping():
|
if not self._client.ping():
|
||||||
raise ConnectionError(
|
raise ConnectionError(
|
||||||
@@ -61,12 +62,8 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
raise ConnectionError(
|
raise ConnectionError(
|
||||||
f"Could not connect to Redis at {self._config.uri}"
|
f"Could not connect to Redis at {self._config.uri}"
|
||||||
) from exc
|
) from exc
|
||||||
self._invalidate_health_cache()
|
|
||||||
return
|
def _establish_connection(self) -> None:
|
||||||
if self._client is not None:
|
|
||||||
self._client.close()
|
|
||||||
self._client = None
|
|
||||||
self._invalidate_health_cache()
|
|
||||||
uri = self._config.uri
|
uri = self._config.uri
|
||||||
try:
|
try:
|
||||||
client = redis.Redis.from_url(
|
client = redis.Redis.from_url(
|
||||||
@@ -78,7 +75,6 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
except (redis.ConnectionError, redis.TimeoutError) as exc:
|
except (redis.ConnectionError, redis.TimeoutError) as exc:
|
||||||
raise ConnectionError(f"Could not connect to Redis at {uri}") from exc
|
raise ConnectionError(f"Could not connect to Redis at {uri}") from exc
|
||||||
self._client = client
|
self._client = client
|
||||||
self._invalidate_health_cache()
|
|
||||||
|
|
||||||
def disconnect(self) -> None:
|
def disconnect(self) -> None:
|
||||||
"""Disconnect from the Redis server."""
|
"""Disconnect from the Redis server."""
|
||||||
@@ -94,22 +90,32 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
except (redis.ConnectionError, redis.TimeoutError):
|
except (redis.ConnectionError, redis.TimeoutError):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def set(self, key: str, data: dict) -> None:
|
def set(self, key: str, data: dict[str, Any]) -> None:
|
||||||
"""Set a JSON object in Redis."""
|
"""Set a JSON object in Redis.
|
||||||
|
|
||||||
|
Accepts any dict, including ``{}``. An empty dict creates a key that
|
||||||
|
``get()`` returns as ``{}``, not ``None``. Use ``delete()`` to remove a
|
||||||
|
key entirely.
|
||||||
|
"""
|
||||||
# Check input
|
# Check input
|
||||||
if not isinstance(key, str) or len(key) == 0:
|
if not isinstance(key, str) or len(key) == 0:
|
||||||
raise ValueError("Key must be a non-empty string")
|
raise ValueError("Key must be a non-empty string")
|
||||||
if not isinstance(data, dict) or len(data) == 0:
|
if not isinstance(data, dict):
|
||||||
raise ValueError("Data must be a non-empty dictionary")
|
raise ValueError("Data must be a dictionary")
|
||||||
# Check connection
|
# Check connection
|
||||||
self._require_connected()
|
self._require_connected()
|
||||||
assert self._client is not None
|
assert self._client is not None
|
||||||
# Set data
|
# Set data
|
||||||
self._client.json().set(key, self.path, data)
|
self._client.json().set(key, self.path, data)
|
||||||
self.logger.debug(f"Set {key} to {data}")
|
self.logger.debug("Set key", key=key, data_keys=list(data.keys()))
|
||||||
|
|
||||||
def get(self, key: str) -> dict | None:
|
def get(self, key: str) -> dict[str, Any] | None:
|
||||||
"""Get a JSON object from Redis."""
|
"""Get a JSON object from Redis.
|
||||||
|
|
||||||
|
Returns ``None`` if the key is absent. Returns ``{}`` if the key exists
|
||||||
|
with an empty JSON object. Use ``value is not None`` to test existence;
|
||||||
|
avoid truthiness checks (``{}`` is falsy).
|
||||||
|
"""
|
||||||
# Check input
|
# Check input
|
||||||
if not isinstance(key, str) or len(key) == 0:
|
if not isinstance(key, str) or len(key) == 0:
|
||||||
raise ValueError("Key must be a non-empty string")
|
raise ValueError("Key must be a non-empty string")
|
||||||
@@ -118,10 +124,10 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
assert self._client is not None
|
assert self._client is not None
|
||||||
# Get data
|
# Get data
|
||||||
data = cast(
|
data = cast(
|
||||||
dict | None,
|
dict[str, Any] | None,
|
||||||
self._client.json().get(key),
|
self._client.json().get(key),
|
||||||
)
|
)
|
||||||
self.logger.debug(f"Got {data} from {key}")
|
self.logger.debug("Got value", key=key, found=data is not None)
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def delete(self, key: str) -> None:
|
def delete(self, key: str) -> None:
|
||||||
@@ -134,13 +140,15 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
assert self._client is not None
|
assert self._client is not None
|
||||||
# Delete data
|
# Delete data
|
||||||
self._client.json().delete(key)
|
self._client.json().delete(key)
|
||||||
self.logger.debug(f"Deleted {key}")
|
self.logger.debug("Deleted key", key=key)
|
||||||
|
|
||||||
def list_keys(self, pattern: str) -> list[str]:
|
def _validate_pattern(self, pattern: str) -> None:
|
||||||
"""List keys in Redis matching a pattern."""
|
|
||||||
# Check input
|
|
||||||
if not isinstance(pattern, str) or len(pattern) == 0:
|
if not isinstance(pattern, str) or len(pattern) == 0:
|
||||||
raise ValueError("Pattern must be a non-empty string")
|
raise ValueError("Pattern must be a non-empty string")
|
||||||
|
|
||||||
|
def list_keys(self, pattern: str) -> list[str]:
|
||||||
|
"""List keys in Redis using KEYS; may block on large datasets."""
|
||||||
|
self._validate_pattern(pattern)
|
||||||
# Check connection
|
# Check connection
|
||||||
self._require_connected()
|
self._require_connected()
|
||||||
assert self._client is not None
|
assert self._client is not None
|
||||||
@@ -150,5 +158,31 @@ class RedisAdapter(JsonRepositoryInterface, ConnectionAwareAdapter):
|
|||||||
self._client.keys(pattern),
|
self._client.keys(pattern),
|
||||||
)
|
)
|
||||||
keys: list[str] = [key.decode(self.encoding) for key in keys_raw]
|
keys: list[str] = [key.decode(self.encoding) for key in keys_raw]
|
||||||
self.logger.debug(f"Got {keys} matching {pattern}")
|
self.logger.debug("Listed keys", pattern=pattern, count=len(keys))
|
||||||
return keys
|
return keys
|
||||||
|
|
||||||
|
def scan_keys(
|
||||||
|
self,
|
||||||
|
pattern: str,
|
||||||
|
*,
|
||||||
|
count: int | None = None,
|
||||||
|
) -> Iterator[str]:
|
||||||
|
"""Yield keys in Redis using SCAN to avoid blocking large datasets."""
|
||||||
|
self._validate_pattern(pattern)
|
||||||
|
self._require_connected()
|
||||||
|
assert self._client is not None
|
||||||
|
client = self._client
|
||||||
|
|
||||||
|
def _decode(key: bytes | str) -> str:
|
||||||
|
return key if isinstance(key, str) else key.decode(self.encoding)
|
||||||
|
|
||||||
|
def _iter() -> Iterator[str]:
|
||||||
|
scan_iter = (
|
||||||
|
client.scan_iter(match=pattern, count=count)
|
||||||
|
if count is not None
|
||||||
|
else client.scan_iter(match=pattern)
|
||||||
|
)
|
||||||
|
for key_raw in scan_iter:
|
||||||
|
yield _decode(key_raw)
|
||||||
|
|
||||||
|
return _iter()
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
from .dotenv_loader import load_dotenv as load_dotenv
|
from .dotenv_loader import load_dotenv as load_dotenv
|
||||||
from .minio_config import MinioConfig as MinioConfig
|
from .minio_config import MinioConfig as MinioConfig
|
||||||
|
from .postgres_config import PostgresConfig as PostgresConfig
|
||||||
from .redis_config import RedisConfig as RedisConfig
|
from .redis_config import RedisConfig as RedisConfig
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"MinioConfig",
|
"MinioConfig",
|
||||||
|
"PostgresConfig",
|
||||||
"RedisConfig",
|
"RedisConfig",
|
||||||
"load_dotenv",
|
"load_dotenv",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
"""Parse boolean values from environment variables."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import os
|
||||||
|
|
||||||
|
_TRUTHY = frozenset({"1", "true", "yes", "on"})
|
||||||
|
_FALSY = frozenset({"0", "false", "no", "off"})
|
||||||
|
|
||||||
|
|
||||||
|
def env_bool(name: str, default: bool) -> bool:
|
||||||
|
"""Parse an environment variable as a boolean value."""
|
||||||
|
raw = os.getenv(name)
|
||||||
|
if raw is None:
|
||||||
|
return default
|
||||||
|
normalized = raw.strip().lower()
|
||||||
|
if normalized in _TRUTHY:
|
||||||
|
return True
|
||||||
|
if normalized in _FALSY:
|
||||||
|
return False
|
||||||
|
raise ValueError(f"Invalid boolean value for {name}: {raw!r}")
|
||||||
@@ -2,27 +2,13 @@
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import os
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
import os
|
||||||
|
|
||||||
from python_utils import check_env
|
from python_utils import check_env
|
||||||
|
|
||||||
from python_repositories.config.dotenv_loader import load_dotenv
|
from python_repositories.config.dotenv_loader import load_dotenv
|
||||||
|
from python_repositories.config.env_bool import env_bool
|
||||||
_TRUTHY = frozenset({"1", "true", "yes", "on"})
|
|
||||||
_FALSY = frozenset({"0", "false", "no", "off"})
|
|
||||||
|
|
||||||
|
|
||||||
def _env_bool(name: str, default: bool) -> bool:
|
|
||||||
raw = os.getenv(name)
|
|
||||||
if raw is None:
|
|
||||||
return default
|
|
||||||
normalized = raw.strip().lower()
|
|
||||||
if normalized in _TRUTHY:
|
|
||||||
return True
|
|
||||||
if normalized in _FALSY:
|
|
||||||
return False
|
|
||||||
raise ValueError(f"Invalid boolean value for {name}: {raw!r}")
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
@@ -34,6 +20,7 @@ class MinioConfig:
|
|||||||
secret_key: str
|
secret_key: str
|
||||||
bucket: str
|
bucket: str
|
||||||
secure: bool = True
|
secure: bool = True
|
||||||
|
create_bucket_if_missing: bool = False
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_env(
|
def from_env(
|
||||||
@@ -43,6 +30,7 @@ class MinioConfig:
|
|||||||
secret_key_env_var_name: str = "MINIO_SECRET_KEY",
|
secret_key_env_var_name: str = "MINIO_SECRET_KEY",
|
||||||
bucket_env_var_name: str = "MINIO_BUCKET",
|
bucket_env_var_name: str = "MINIO_BUCKET",
|
||||||
secure_env_var_name: str = "MINIO_SECURE",
|
secure_env_var_name: str = "MINIO_SECURE",
|
||||||
|
create_bucket_if_missing_env_var_name: str = ("MINIO_CREATE_BUCKET_IF_MISSING"),
|
||||||
*,
|
*,
|
||||||
use_dotenv: bool = True,
|
use_dotenv: bool = True,
|
||||||
) -> MinioConfig:
|
) -> MinioConfig:
|
||||||
@@ -61,5 +49,9 @@ class MinioConfig:
|
|||||||
access_key=str(os.getenv(access_key_env_var_name)),
|
access_key=str(os.getenv(access_key_env_var_name)),
|
||||||
secret_key=str(os.getenv(secret_key_env_var_name)),
|
secret_key=str(os.getenv(secret_key_env_var_name)),
|
||||||
bucket=str(os.getenv(bucket_env_var_name)),
|
bucket=str(os.getenv(bucket_env_var_name)),
|
||||||
secure=_env_bool(secure_env_var_name, default=True),
|
secure=env_bool(secure_env_var_name, default=True),
|
||||||
|
create_bucket_if_missing=env_bool(
|
||||||
|
create_bucket_if_missing_env_var_name,
|
||||||
|
default=False,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -0,0 +1,42 @@
|
|||||||
|
"""PostgreSQL connection configuration."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from dataclasses import dataclass
|
||||||
|
import os
|
||||||
|
|
||||||
|
from python_utils import check_env
|
||||||
|
|
||||||
|
from python_repositories.config.dotenv_loader import load_dotenv
|
||||||
|
|
||||||
|
|
||||||
|
@dataclass(frozen=True)
|
||||||
|
class PostgresConfig:
|
||||||
|
"""Configuration for connecting to PostgreSQL."""
|
||||||
|
|
||||||
|
uri: str
|
||||||
|
table: str
|
||||||
|
primary_key: str = "id"
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def from_env(
|
||||||
|
cls,
|
||||||
|
uri_env_var_name: str = "POSTGRES_URI",
|
||||||
|
table_env_var_name: str = "POSTGRES_TABLE",
|
||||||
|
primary_key_env_var_name: str = "POSTGRES_PRIMARY_KEY",
|
||||||
|
*,
|
||||||
|
use_dotenv: bool = True,
|
||||||
|
) -> PostgresConfig:
|
||||||
|
"""Load configuration from environment variables."""
|
||||||
|
if use_dotenv:
|
||||||
|
load_dotenv()
|
||||||
|
env_var_names = {uri_env_var_name, table_env_var_name}
|
||||||
|
check_env(env_var_names)
|
||||||
|
primary_key = os.getenv(primary_key_env_var_name)
|
||||||
|
if primary_key is None or primary_key == "":
|
||||||
|
primary_key = "id"
|
||||||
|
return cls(
|
||||||
|
uri=str(os.getenv(uri_env_var_name)),
|
||||||
|
table=str(os.getenv(table_env_var_name)),
|
||||||
|
primary_key=primary_key,
|
||||||
|
)
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import os
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
import os
|
||||||
|
|
||||||
from python_utils import check_env
|
from python_utils import check_env
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
"""Example domain repository backed by Redis JSON."""
|
"""Example domain repository backed by Redis JSON."""
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
from python_repositories.adapters.redis_adapter import RedisAdapter
|
from python_repositories.adapters.redis_adapter import RedisAdapter
|
||||||
|
|
||||||
|
|
||||||
@@ -9,10 +11,10 @@ class UserJsonRepository(RedisAdapter):
|
|||||||
def _key(self, user_id: str) -> str:
|
def _key(self, user_id: str) -> str:
|
||||||
return f"user:{user_id}"
|
return f"user:{user_id}"
|
||||||
|
|
||||||
def get_user(self, user_id: str) -> dict | None:
|
def get_user(self, user_id: str) -> dict[str, Any] | None:
|
||||||
return self.get(self._key(user_id))
|
return self.get(self._key(user_id))
|
||||||
|
|
||||||
def save_user(self, user_id: str, user: dict) -> None:
|
def save_user(self, user_id: str, user: dict[str, Any]) -> None:
|
||||||
self.set(self._key(user_id), user)
|
self.set(self._key(user_id), user)
|
||||||
|
|
||||||
def delete_user(self, user_id: str) -> None:
|
def delete_user(self, user_id: str) -> None:
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
"""Example domain repository backed by Postgres tables."""
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from python_repositories.adapters.postgres_adapter import PostgresAdapter
|
||||||
|
|
||||||
|
|
||||||
|
class UserTableRepository(PostgresAdapter):
|
||||||
|
"""Example: domain repository backed by a Postgres table."""
|
||||||
|
|
||||||
|
def get_user(self, user_id: str) -> dict[str, Any] | None:
|
||||||
|
return self.fetch_one(user_id)
|
||||||
|
|
||||||
|
def save_user(self, user_id: str, user: dict[str, Any]) -> None:
|
||||||
|
row = {self._config.primary_key: user_id, **user}
|
||||||
|
self.upsert(row)
|
||||||
|
|
||||||
|
def delete_user(self, user_id: str) -> None:
|
||||||
|
self.delete(user_id)
|
||||||
@@ -8,10 +8,14 @@ from .json_repository_interface import (
|
|||||||
from .object_repository_interface import (
|
from .object_repository_interface import (
|
||||||
ObjectRepositoryInterface as ObjectRepositoryInterface,
|
ObjectRepositoryInterface as ObjectRepositoryInterface,
|
||||||
)
|
)
|
||||||
|
from .table_repository_interface import (
|
||||||
|
TableRepositoryInterface as TableRepositoryInterface,
|
||||||
|
)
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"ConnectionAwareInterface",
|
"ConnectionAwareInterface",
|
||||||
"ContextAwareInterface",
|
"ContextAwareInterface",
|
||||||
"JsonRepositoryInterface",
|
"JsonRepositoryInterface",
|
||||||
"ObjectRepositoryInterface",
|
"ObjectRepositoryInterface",
|
||||||
|
"TableRepositoryInterface",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,14 +1,20 @@
|
|||||||
"""Definition of ConnectionAwareInterface abstract base class."""
|
"""Definition of ConnectionAwareInterface protocol and abstract base class."""
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
from abc import abstractmethod
|
||||||
|
from typing import Protocol, runtime_checkable
|
||||||
|
|
||||||
|
|
||||||
class ConnectionAwareInterface(ABC):
|
@runtime_checkable
|
||||||
|
class ConnectionAwareInterface(Protocol):
|
||||||
"""Interface that defines connection-related methods."""
|
"""Interface that defines connection-related methods."""
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def connect(self) -> None:
|
def connect(self) -> None:
|
||||||
"""Connect to resource."""
|
"""Connect to resource.
|
||||||
|
|
||||||
|
Implementations should be idempotent: calling connect while already
|
||||||
|
connected and healthy is a no-op.
|
||||||
|
"""
|
||||||
...
|
...
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
|||||||
@@ -1,12 +1,13 @@
|
|||||||
"""Definition of ContextAwareInterface abstract base class."""
|
"""Definition of ContextAwareInterface protocol and abstract base class."""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
from abc import abstractmethod
|
||||||
from typing import Self
|
from typing import Protocol, Self, runtime_checkable
|
||||||
|
|
||||||
|
|
||||||
class ContextAwareInterface(ABC):
|
@runtime_checkable
|
||||||
|
class ContextAwareInterface(Protocol):
|
||||||
"""Interface that defines context-related methods."""
|
"""Interface that defines context-related methods."""
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
|||||||
@@ -1,27 +1,50 @@
|
|||||||
"""Definition of JsonRepositoryInterface abstract base class."""
|
"""Definition of JsonRepositoryInterface protocol and abstract base class."""
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
from abc import abstractmethod
|
||||||
|
from collections.abc import Iterator
|
||||||
|
from typing import Any, Protocol, runtime_checkable
|
||||||
|
|
||||||
|
|
||||||
class JsonRepositoryInterface(ABC):
|
@runtime_checkable
|
||||||
|
class JsonRepositoryInterface(Protocol):
|
||||||
"""Interface that defines JSON document CRUD methods."""
|
"""Interface that defines JSON document CRUD methods."""
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def get(self, key: str) -> dict | None:
|
def get(self, key: str) -> dict[str, Any] | None:
|
||||||
"""Get a JSON object by key."""
|
"""Get a JSON object by key.
|
||||||
|
|
||||||
|
Returns ``None`` when the key is absent. Returns ``{}`` when the key
|
||||||
|
exists with an empty JSON object. Use ``value is not None`` to test
|
||||||
|
existence; avoid truthiness checks (``{}`` is falsy).
|
||||||
|
"""
|
||||||
...
|
...
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def set(self, key: str, data: dict) -> None:
|
def set(self, key: str, data: dict[str, Any]) -> None:
|
||||||
"""Set a JSON object by key."""
|
"""Set a JSON object by key.
|
||||||
|
|
||||||
|
Accepts any dict, including ``{}``. An empty dict creates a key that
|
||||||
|
``get()`` returns as ``{}``, not ``None``. Use ``delete()`` to remove a
|
||||||
|
key entirely.
|
||||||
|
"""
|
||||||
...
|
...
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def delete(self, key: str) -> None:
|
def delete(self, key: str) -> None:
|
||||||
"""Delete a JSON object by key."""
|
"""Delete a JSON object by key, removing it entirely."""
|
||||||
...
|
...
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def list_keys(self, pattern: str) -> list[str]:
|
def list_keys(self, pattern: str) -> list[str]:
|
||||||
"""List keys matching a glob pattern."""
|
"""List keys matching a glob pattern."""
|
||||||
...
|
...
|
||||||
|
|
||||||
|
def scan_keys(
|
||||||
|
self,
|
||||||
|
pattern: str,
|
||||||
|
*,
|
||||||
|
count: int | None = None,
|
||||||
|
) -> Iterator[str]:
|
||||||
|
"""Yield keys matching a glob pattern incrementally."""
|
||||||
|
del count
|
||||||
|
yield from self.list_keys(pattern)
|
||||||
|
|||||||
@@ -1,15 +1,23 @@
|
|||||||
"""Definition of ObjectRepositoryInterface abstract base class."""
|
"""Definition of ObjectRepositoryInterface protocol and abstract base class."""
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
from abc import abstractmethod
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
from typing import Protocol, runtime_checkable
|
||||||
|
|
||||||
|
|
||||||
class ObjectRepositoryInterface(ABC):
|
@runtime_checkable
|
||||||
|
class ObjectRepositoryInterface(Protocol):
|
||||||
"""Interface that defines binary object CRUD methods."""
|
"""Interface that defines binary object CRUD methods."""
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def get(self, object_name: str) -> BytesIO | None:
|
def get(self, object_name: str) -> BytesIO | None:
|
||||||
"""Get an object by name."""
|
"""Get an object by name.
|
||||||
|
|
||||||
|
Returns ``None`` when the object does not exist. Returns an empty
|
||||||
|
``BytesIO`` for a zero-byte object. Use ``value is not None`` to test
|
||||||
|
existence. Raises ConnectionError when not connected. Other backend
|
||||||
|
errors propagate to the caller.
|
||||||
|
"""
|
||||||
...
|
...
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
@@ -19,12 +27,17 @@ class ObjectRepositoryInterface(ABC):
|
|||||||
data: BytesIO,
|
data: BytesIO,
|
||||||
content_type: str = "application/octet-stream",
|
content_type: str = "application/octet-stream",
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Put an object by name."""
|
"""Put an object by name.
|
||||||
|
|
||||||
|
Accepts zero-byte ``BytesIO``. A zero-byte object is returned by
|
||||||
|
``get()`` as an empty buffer, not ``None``. Use ``delete()`` to remove
|
||||||
|
an object entirely.
|
||||||
|
"""
|
||||||
...
|
...
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def delete(self, object_name: str) -> None:
|
def delete(self, object_name: str) -> None:
|
||||||
"""Delete an object by name."""
|
"""Delete an object by name, removing it entirely."""
|
||||||
...
|
...
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
|||||||
@@ -0,0 +1,55 @@
|
|||||||
|
"""Definition of TableRepositoryInterface protocol."""
|
||||||
|
|
||||||
|
from abc import abstractmethod
|
||||||
|
from typing import Any, Protocol, runtime_checkable
|
||||||
|
|
||||||
|
|
||||||
|
@runtime_checkable
|
||||||
|
class TableRepositoryInterface(Protocol):
|
||||||
|
"""Interface that defines relational table CRUD methods."""
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def fetch_one(self, pk: Any) -> dict[str, Any] | None:
|
||||||
|
"""Fetch a single row by primary key.
|
||||||
|
|
||||||
|
Returns ``None`` when no row matches. Use ``value is not None`` to test
|
||||||
|
existence; avoid truthiness checks.
|
||||||
|
"""
|
||||||
|
...
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def fetch_all(self, *, limit: int | None = None) -> list[dict[str, Any]]:
|
||||||
|
"""Fetch all rows from the configured table.
|
||||||
|
|
||||||
|
Returns an empty list when the table has no rows.
|
||||||
|
"""
|
||||||
|
...
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def upsert(self, row: dict[str, Any]) -> None:
|
||||||
|
"""Insert or update a row by primary key.
|
||||||
|
|
||||||
|
``row`` must include the configured primary key column. Raises
|
||||||
|
``ValueError`` for a non-dict row or a missing primary key.
|
||||||
|
"""
|
||||||
|
...
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def delete(self, pk: Any) -> None:
|
||||||
|
"""Delete a row by primary key.
|
||||||
|
|
||||||
|
Idempotent: no error when the row is already absent.
|
||||||
|
"""
|
||||||
|
...
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def execute(
|
||||||
|
self,
|
||||||
|
sql: str,
|
||||||
|
params: tuple[Any, ...] = (),
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
"""Run a read SQL statement and return rows as dicts.
|
||||||
|
|
||||||
|
Escape hatch for joins, filters, and other queries in subclasses.
|
||||||
|
"""
|
||||||
|
...
|
||||||
Executable
+64
@@ -0,0 +1,64 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
# shellcheck source=common.sh
|
||||||
|
source "${SCRIPT_DIR}/common.sh"
|
||||||
|
|
||||||
|
CHANGELOG="CHANGELOG.md"
|
||||||
|
|
||||||
|
# Best-effort summary for historical releases without stored PR titles.
|
||||||
|
summary_for_range() {
|
||||||
|
local from_ref="$1"
|
||||||
|
local to_ref="$2"
|
||||||
|
local subject
|
||||||
|
|
||||||
|
while IFS= read -r subject; do
|
||||||
|
[[ -z "$subject" ]] && continue
|
||||||
|
if echo "$subject" | grep -qE '^chore: release v'; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if echo "$subject" | grep -qE "^Merge pull request '"; then
|
||||||
|
local title
|
||||||
|
title=$(extract_pr_title_from_merge_commit "$subject")
|
||||||
|
if [[ -n "$title" ]]; then
|
||||||
|
strip_bump_prefix "$title"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
echo "$subject"
|
||||||
|
return 0
|
||||||
|
done < <(git log "${from_ref}..${to_ref}" --pretty=format:'%s' 2>/dev/null || true)
|
||||||
|
|
||||||
|
echo "Release ${to_ref}"
|
||||||
|
}
|
||||||
|
|
||||||
|
TAGS=()
|
||||||
|
while IFS= read -r tag; do
|
||||||
|
TAGS+=("$tag")
|
||||||
|
done < <(git tag -l 'v*' --sort=version:refname)
|
||||||
|
if [[ ${#TAGS[@]} -eq 0 ]]; then
|
||||||
|
echo "No version tags found." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
changelog_header > "$CHANGELOG"
|
||||||
|
|
||||||
|
for ((i = ${#TAGS[@]} - 1; i >= 0; i--)); do
|
||||||
|
TAG="${TAGS[$i]}"
|
||||||
|
VERSION="${TAG#v}"
|
||||||
|
DATE=$(git log -1 --format=%cs "$TAG" 2>/dev/null || date -u +%Y-%m-%d)
|
||||||
|
|
||||||
|
if [[ $i -eq 0 ]]; then
|
||||||
|
PREV_TAG=""
|
||||||
|
else
|
||||||
|
PREV_TAG="${TAGS[$((i - 1))]}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
SUMMARY=$(summary_for_range "$PREV_TAG" "$TAG")
|
||||||
|
COMMITS=$(commits_between "$PREV_TAG" "$TAG")
|
||||||
|
SECTION=$(changelog_section "$VERSION" "$DATE" "$SUMMARY" "$COMMITS")
|
||||||
|
printf '\n%s\n' "$SECTION" >> "$CHANGELOG"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "Generated ${CHANGELOG} from ${#TAGS[@]} tags." >&2
|
||||||
Executable
+78
@@ -0,0 +1,78 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Build and optionally push the Gitea Actions CI base image locally.
|
||||||
|
#
|
||||||
|
# Use when ci-image.yml is not yet on main (e.g. bootstrapping a PR branch) or
|
||||||
|
# when you need to rebuild without waiting for the nightly workflow.
|
||||||
|
#
|
||||||
|
# Build only (smoke test):
|
||||||
|
# export CI_RUNNER_TOKEN='ci-bot-personal-access-token'
|
||||||
|
# bash scripts/ci/build-ci-image.sh --local
|
||||||
|
#
|
||||||
|
# Build and push to Gitea (unblocks python-repositories-ci jobs):
|
||||||
|
# export CI_RUNNER_TOKEN='ci-bot-personal-access-token'
|
||||||
|
# bash scripts/ci/build-ci-image.sh --push
|
||||||
|
#
|
||||||
|
# Optional overrides:
|
||||||
|
# REGISTRY=gitea.lille-vemmelund.dk
|
||||||
|
# REGISTRY_USER=ci-bot
|
||||||
|
# IMAGE_OWNER=lillevemmelund
|
||||||
|
# IMAGE_NAME=python-repositories-ci
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
REPO_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)"
|
||||||
|
|
||||||
|
REGISTRY="${REGISTRY:-gitea.lille-vemmelund.dk}"
|
||||||
|
REGISTRY_USER="${REGISTRY_USER:-ci-bot}"
|
||||||
|
IMAGE_OWNER="${IMAGE_OWNER:-lillevemmelund}"
|
||||||
|
IMAGE_NAME="${IMAGE_NAME:-python-repositories-ci}"
|
||||||
|
IMAGE="${IMAGE:-${REGISTRY}/${IMAGE_OWNER}/${IMAGE_NAME}}"
|
||||||
|
|
||||||
|
MODE="push"
|
||||||
|
if [[ "${1:-}" == "--local" ]]; then
|
||||||
|
MODE="local"
|
||||||
|
elif [[ "${1:-}" == "--push" || -z "${1:-}" ]]; then
|
||||||
|
MODE="push"
|
||||||
|
elif [[ -n "${1:-}" ]]; then
|
||||||
|
echo "Usage: build-ci-image.sh [--local | --push]" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
: "${CI_RUNNER_TOKEN:?CI_RUNNER_TOKEN is required (ci-bot token with read/write package access)}"
|
||||||
|
|
||||||
|
TOKEN_FILE="$(mktemp)"
|
||||||
|
cleanup() {
|
||||||
|
rm -f "$TOKEN_FILE"
|
||||||
|
}
|
||||||
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
printf '%s' "$CI_RUNNER_TOKEN" >"$TOKEN_FILE"
|
||||||
|
|
||||||
|
cd "$REPO_ROOT"
|
||||||
|
|
||||||
|
if [[ "$MODE" == "local" ]]; then
|
||||||
|
echo "=== Building local CI image (no push): python-repositories-ci:local ==="
|
||||||
|
docker build --network=host -f docker/ci/Dockerfile \
|
||||||
|
--secret "id=uv_token,src=${TOKEN_FILE}" \
|
||||||
|
-t python-repositories-ci:local \
|
||||||
|
.
|
||||||
|
echo "Built python-repositories-ci:local"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "=== Logging in to ${REGISTRY} as ${REGISTRY_USER} ==="
|
||||||
|
echo "$CI_RUNNER_TOKEN" | docker login "$REGISTRY" -u "$REGISTRY_USER" --password-stdin
|
||||||
|
|
||||||
|
echo "=== Building ${IMAGE}:latest ==="
|
||||||
|
docker build --network=host -f docker/ci/Dockerfile \
|
||||||
|
--secret "id=uv_token,src=${TOKEN_FILE}" \
|
||||||
|
-t "${IMAGE}:latest" \
|
||||||
|
.
|
||||||
|
|
||||||
|
STAMP="$(date -u +%Y%m%d%H%M)"
|
||||||
|
echo "=== Pushing ${IMAGE}:latest and ${IMAGE}:${STAMP} ==="
|
||||||
|
docker tag "${IMAGE}:latest" "${IMAGE}:${STAMP}"
|
||||||
|
docker push "${IMAGE}:latest"
|
||||||
|
docker push "${IMAGE}:${STAMP}"
|
||||||
|
|
||||||
|
echo "Done. Re-run failing CI jobs — runners pull ${IMAGE}:latest"
|
||||||
@@ -61,6 +61,59 @@ set_pyproject_version() {
|
|||||||
rm -f pyproject.toml.bak
|
rm -f pyproject.toml.bak
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Returns markdown bullet list of commits between two refs (exclusive..inclusive).
|
||||||
|
# Optional third argument limits entries when from_ref is empty (release notes only).
|
||||||
|
commits_between() {
|
||||||
|
local from_ref="$1"
|
||||||
|
local to_ref="${2:-HEAD}"
|
||||||
|
local limit="${3:-}"
|
||||||
|
|
||||||
|
if [[ -z "$from_ref" ]]; then
|
||||||
|
if [[ -n "$limit" ]]; then
|
||||||
|
git log "${to_ref}" --pretty=format:'- %h %s' -"${limit}" 2>/dev/null || true
|
||||||
|
else
|
||||||
|
git log "${to_ref}" --pretty=format:'- %h %s' 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
git log "${from_ref}..${to_ref}" --pretty=format:'- %h %s' 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
commits_since() {
|
||||||
|
commits_between "$1" HEAD
|
||||||
|
}
|
||||||
|
|
||||||
|
changelog_header() {
|
||||||
|
cat <<'EOF'
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
changelog_section() {
|
||||||
|
local version="$1"
|
||||||
|
local date="$2"
|
||||||
|
local summary="$3"
|
||||||
|
local commits="$4"
|
||||||
|
|
||||||
|
cat <<EOF
|
||||||
|
## [${version}] - ${date}
|
||||||
|
|
||||||
|
### Summary
|
||||||
|
${summary}
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
${commits:-- (no commits recorded)}
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
bump_semver() {
|
bump_semver() {
|
||||||
local current="$1"
|
local current="$1"
|
||||||
local bump_type="$2"
|
local bump_type="$2"
|
||||||
|
|||||||
@@ -11,15 +11,16 @@ set -euo pipefail
|
|||||||
BRANCH="${BRANCH:-renovate/auto-deps-update}"
|
BRANCH="${BRANCH:-renovate/auto-deps-update}"
|
||||||
BASE_BRANCH="${BASE_BRANCH:-main}"
|
BASE_BRANCH="${BASE_BRANCH:-main}"
|
||||||
LOCKFILE="${LOCKFILE:-uv.lock}"
|
LOCKFILE="${LOCKFILE:-uv.lock}"
|
||||||
|
PRE_COMMIT_CONFIG="${PRE_COMMIT_CONFIG:-.pre-commit-config.yaml}"
|
||||||
|
|
||||||
if git diff --quiet "$LOCKFILE"; then
|
if git diff --quiet "$LOCKFILE" && git diff --quiet "$PRE_COMMIT_CONFIG"; then
|
||||||
echo "No dependency updates available."
|
echo "No dependency updates available."
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git config user.name "CI Bot"
|
git config user.name "CI Bot"
|
||||||
git config user.email "[email protected]"
|
git config user.email "[email protected]"
|
||||||
git add "$LOCKFILE"
|
git add "$LOCKFILE" "$PRE_COMMIT_CONFIG"
|
||||||
git commit -m "chore(deps): update dependencies [automated]"
|
git commit -m "chore(deps): update dependencies [automated]"
|
||||||
|
|
||||||
git remote set-url origin "https://x-access-token:${CI_RUNNER_TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY}.git"
|
git remote set-url origin "https://x-access-token:${CI_RUNNER_TOKEN}@${GITHUB_SERVER_URL#https://}/${GITHUB_REPOSITORY}.git"
|
||||||
@@ -48,7 +49,12 @@ print(
|
|||||||
json.dumps(
|
json.dumps(
|
||||||
{
|
{
|
||||||
"title": "chore(deps): update dependencies",
|
"title": "chore(deps): update dependencies",
|
||||||
"body": "This PR was created automatically to update dependencies.",
|
"body": (
|
||||||
|
"This PR was created automatically to update dependencies.\n\n"
|
||||||
|
"- `uv.lock`: upgraded Python dependencies\n"
|
||||||
|
"- `.pre-commit-config.yaml`: updated remote hook revs via "
|
||||||
|
"`pre-commit autoupdate`"
|
||||||
|
),
|
||||||
"head": os.environ["BRANCH"],
|
"head": os.environ["BRANCH"],
|
||||||
"base": os.environ["BASE_BRANCH"],
|
"base": os.environ["BASE_BRANCH"],
|
||||||
}
|
}
|
||||||
|
|||||||
Executable
+16
@@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
# Fetch the current PR title from the Gitea API.
|
||||||
|
# Requires: API_URL, REPO_OWNER, REPO_NAME, PR_NUMBER, CI_RUNNER_TOKEN
|
||||||
|
|
||||||
|
: "${API_URL:?API_URL is required}"
|
||||||
|
: "${REPO_OWNER:?REPO_OWNER is required}"
|
||||||
|
: "${REPO_NAME:?REPO_NAME is required}"
|
||||||
|
: "${PR_NUMBER:?PR_NUMBER is required}"
|
||||||
|
: "${CI_RUNNER_TOKEN:?CI_RUNNER_TOKEN is required}"
|
||||||
|
|
||||||
|
curl -sf \
|
||||||
|
"${API_URL}/repos/${REPO_OWNER}/${REPO_NAME}/pulls/${PR_NUMBER}" \
|
||||||
|
-H "Authorization: token ${CI_RUNNER_TOKEN}" \
|
||||||
|
| python3 -c 'import json, sys; print(json.load(sys.stdin)["title"])'
|
||||||
@@ -34,13 +34,13 @@ if [[ -n "$PREV_TAG" ]]; then
|
|||||||
|
|
||||||
## Changes since ${PREV_TAG}
|
## Changes since ${PREV_TAG}
|
||||||
|
|
||||||
$(git log "${PREV_TAG}..HEAD" --pretty=format:'- %h %s' || true)"
|
$(commits_since "$PREV_TAG")"
|
||||||
else
|
else
|
||||||
NOTES="${NOTES}
|
NOTES="${NOTES}
|
||||||
|
|
||||||
## Changes
|
## Changes
|
||||||
|
|
||||||
$(git log --pretty=format:'- %h %s' -20 || true)"
|
$(commits_between "" HEAD 20)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "${GITHUB_OUTPUT:-}" ]]; then
|
if [[ -n "${GITHUB_OUTPUT:-}" ]]; then
|
||||||
|
|||||||
Executable
+63
@@ -0,0 +1,63 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
# shellcheck source=common.sh
|
||||||
|
source "${SCRIPT_DIR}/common.sh"
|
||||||
|
|
||||||
|
VERSION="${1:-}"
|
||||||
|
SUMMARY="${2:-}"
|
||||||
|
PREV_TAG="${3:-}"
|
||||||
|
DATE="${4:-$(date -u +%Y-%m-%d)}"
|
||||||
|
CHANGELOG="CHANGELOG.md"
|
||||||
|
|
||||||
|
if [[ -z "$VERSION" ]]; then
|
||||||
|
echo "Usage: update-changelog.sh <version> <summary> <prev-tag> [date]" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -f "$CHANGELOG" ]] && grep -qF "## [${VERSION}]" "$CHANGELOG"; then
|
||||||
|
echo "CHANGELOG already contains version ${VERSION}; skipping." >&2
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -n "$SUMMARY" ]]; then
|
||||||
|
SUMMARY_TEXT=$(strip_bump_prefix "$SUMMARY")
|
||||||
|
else
|
||||||
|
SUMMARY_TEXT="Automated release v${VERSION}."
|
||||||
|
fi
|
||||||
|
|
||||||
|
COMMITS=$(commits_since "$PREV_TAG")
|
||||||
|
SECTION=$(changelog_section "$VERSION" "$DATE" "$SUMMARY_TEXT" "$COMMITS")
|
||||||
|
|
||||||
|
if [[ ! -f "$CHANGELOG" ]]; then
|
||||||
|
changelog_header > "$CHANGELOG"
|
||||||
|
printf '\n%s\n' "$SECTION" >> "$CHANGELOG"
|
||||||
|
else
|
||||||
|
UNRELEASED_MARKER='## [Unreleased]'
|
||||||
|
if ! grep -qF "$UNRELEASED_MARKER" "$CHANGELOG"; then
|
||||||
|
echo "CHANGELOG.md exists but is missing ${UNRELEASED_MARKER}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
TMP=$(mktemp)
|
||||||
|
SECTION_FILE=$(mktemp)
|
||||||
|
printf '%s\n' "$SECTION" > "$SECTION_FILE"
|
||||||
|
|
||||||
|
awk -v section_file="$SECTION_FILE" '
|
||||||
|
/^## \[Unreleased\]/ {
|
||||||
|
print
|
||||||
|
print ""
|
||||||
|
while ((getline line < section_file) > 0) {
|
||||||
|
print line
|
||||||
|
}
|
||||||
|
close(section_file)
|
||||||
|
next
|
||||||
|
}
|
||||||
|
{ print }
|
||||||
|
' "$CHANGELOG" > "$TMP"
|
||||||
|
rm -f "$SECTION_FILE"
|
||||||
|
mv "$TMP" "$CHANGELOG"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Updated ${CHANGELOG} with version ${VERSION}." >&2
|
||||||
+6
-1
@@ -1,6 +1,6 @@
|
|||||||
"""Shared test configuration constants."""
|
"""Shared test configuration constants."""
|
||||||
|
|
||||||
from python_repositories.config import MinioConfig, RedisConfig
|
from python_repositories.config import MinioConfig, PostgresConfig, RedisConfig
|
||||||
|
|
||||||
TEST_REDIS_CONFIG = RedisConfig(uri="redis://localhost:6379")
|
TEST_REDIS_CONFIG = RedisConfig(uri="redis://localhost:6379")
|
||||||
TEST_MINIO_CONFIG = MinioConfig(
|
TEST_MINIO_CONFIG = MinioConfig(
|
||||||
@@ -10,3 +10,8 @@ TEST_MINIO_CONFIG = MinioConfig(
|
|||||||
bucket="test-bucket",
|
bucket="test-bucket",
|
||||||
secure=False,
|
secure=False,
|
||||||
)
|
)
|
||||||
|
TEST_POSTGRES_CONFIG = PostgresConfig(
|
||||||
|
uri="postgresql://localhost/mydb",
|
||||||
|
table="test_items",
|
||||||
|
primary_key="id",
|
||||||
|
)
|
||||||
|
|||||||
@@ -1,22 +1,9 @@
|
|||||||
"""Integration tests configuration."""
|
"""Integration tests configuration."""
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
from collections.abc import Generator
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
import redis
|
|
||||||
import structlog
|
import structlog
|
||||||
from minio import Minio
|
|
||||||
from testcontainers.minio import MinioContainer
|
|
||||||
|
|
||||||
from python_repositories.config import MinioConfig, RedisConfig
|
|
||||||
from tests.integration.redis_container_test import REDIS_PORT, RedisTestContainer
|
|
||||||
|
|
||||||
collect_ignore = ["redis_container_test.py"]
|
|
||||||
|
|
||||||
MINIO_ACCESS_KEY = "minioadmin"
|
|
||||||
MINIO_SECRET_KEY = "minioadmin"
|
|
||||||
MINIO_BUCKET = "test-bucket"
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session", autouse=True)
|
@pytest.fixture(scope="session", autouse=True)
|
||||||
@@ -35,96 +22,3 @@ def configure_logging() -> None:
|
|||||||
cache_logger_on_first_use=True,
|
cache_logger_on_first_use=True,
|
||||||
)
|
)
|
||||||
logging.basicConfig(level=logging.ERROR)
|
logging.basicConfig(level=logging.ERROR)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
|
||||||
def redis_container() -> Generator[str, None, None]:
|
|
||||||
"""Set up a Redis container for testing and yield the Redis URI."""
|
|
||||||
container = RedisTestContainer(
|
|
||||||
image="redis/redis-stack:7.2.0-v0",
|
|
||||||
)
|
|
||||||
container.start()
|
|
||||||
redis_host = container.get_container_host_ip()
|
|
||||||
redis_port = container.get_exposed_port(REDIS_PORT)
|
|
||||||
redis_uri = f"redis://{redis_host}:{redis_port}"
|
|
||||||
|
|
||||||
yield redis_uri
|
|
||||||
|
|
||||||
container.stop()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
|
||||||
def minio_container() -> Generator[dict[str, str], None, None]:
|
|
||||||
"""Set up a Minio container for testing and yield connection settings."""
|
|
||||||
container = MinioContainer(
|
|
||||||
image="minio/minio:latest",
|
|
||||||
access_key=MINIO_ACCESS_KEY,
|
|
||||||
secret_key=MINIO_SECRET_KEY,
|
|
||||||
)
|
|
||||||
container.start()
|
|
||||||
minio_host = container.get_container_host_ip()
|
|
||||||
minio_port = container.get_exposed_port(9000)
|
|
||||||
minio_endpoint = f"{minio_host}:{minio_port}"
|
|
||||||
env_vars = {
|
|
||||||
"MINIO_ENDPOINT": minio_endpoint,
|
|
||||||
"MINIO_ACCESS_KEY": MINIO_ACCESS_KEY,
|
|
||||||
"MINIO_SECRET_KEY": MINIO_SECRET_KEY,
|
|
||||||
"MINIO_BUCKET": MINIO_BUCKET,
|
|
||||||
"MINIO_SECURE": "false",
|
|
||||||
}
|
|
||||||
|
|
||||||
yield env_vars
|
|
||||||
|
|
||||||
container.stop()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
|
||||||
def redis_config(redis_container: str) -> RedisConfig:
|
|
||||||
"""Provide RedisConfig built from the test container."""
|
|
||||||
return RedisConfig(uri=redis_container)
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
|
||||||
def minio_config(minio_container: dict[str, str]) -> MinioConfig:
|
|
||||||
"""Provide MinioConfig built from the test container."""
|
|
||||||
return MinioConfig(
|
|
||||||
endpoint=minio_container["MINIO_ENDPOINT"],
|
|
||||||
access_key=minio_container["MINIO_ACCESS_KEY"],
|
|
||||||
secret_key=minio_container["MINIO_SECRET_KEY"],
|
|
||||||
bucket=minio_container["MINIO_BUCKET"],
|
|
||||||
secure=False,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
|
||||||
def raw_redis_client(redis_container: str) -> Generator[redis.Redis, None, None]:
|
|
||||||
"""Provide a raw Redis client connected to the test Redis container."""
|
|
||||||
client = redis.Redis.from_url(
|
|
||||||
url=redis_container,
|
|
||||||
socket_connect_timeout=10,
|
|
||||||
)
|
|
||||||
|
|
||||||
yield client
|
|
||||||
|
|
||||||
client.flushall()
|
|
||||||
client.close()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="session")
|
|
||||||
def raw_minio_client(minio_container: dict[str, str]) -> Generator[Minio, None, None]:
|
|
||||||
"""Provide a raw Minio client connected to the test Minio container."""
|
|
||||||
client = Minio(
|
|
||||||
endpoint=minio_container["MINIO_ENDPOINT"],
|
|
||||||
access_key=minio_container["MINIO_ACCESS_KEY"],
|
|
||||||
secret_key=minio_container["MINIO_SECRET_KEY"],
|
|
||||||
secure=False,
|
|
||||||
)
|
|
||||||
bucket_name = minio_container["MINIO_BUCKET"]
|
|
||||||
if not client.bucket_exists(bucket_name):
|
|
||||||
client.make_bucket(bucket_name)
|
|
||||||
|
|
||||||
yield client
|
|
||||||
|
|
||||||
objects = client.list_objects(bucket_name, recursive=True)
|
|
||||||
for obj in objects:
|
|
||||||
client.remove_object(bucket_name, obj.object_name)
|
|
||||||
|
|||||||
@@ -0,0 +1,80 @@
|
|||||||
|
"""Examples integration test fixtures."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
|
||||||
|
from minio import Minio
|
||||||
|
import pytest
|
||||||
|
import redis
|
||||||
|
|
||||||
|
from python_repositories.config import MinioConfig, PostgresConfig, RedisConfig
|
||||||
|
from tests.integration.minio._containers import (
|
||||||
|
minio_config_from_env,
|
||||||
|
minio_env,
|
||||||
|
raw_minio_client_from_env,
|
||||||
|
)
|
||||||
|
from tests.integration.postgres._containers import (
|
||||||
|
postgres_config_from_container,
|
||||||
|
postgres_uri,
|
||||||
|
raw_postgres_client_from_container,
|
||||||
|
)
|
||||||
|
from tests.integration.redis._containers import (
|
||||||
|
raw_redis_client_from_container,
|
||||||
|
redis_config_from_container,
|
||||||
|
redis_uri,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def redis_container() -> Generator[str, None, None]:
|
||||||
|
"""Set up a Redis container for testing and yield the Redis URI."""
|
||||||
|
yield from redis_uri()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def redis_config(redis_container: str) -> RedisConfig:
|
||||||
|
"""Provide RedisConfig built from the test container."""
|
||||||
|
return redis_config_from_container(redis_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def raw_redis_client(redis_container: str) -> Generator[redis.Redis, None, None]:
|
||||||
|
"""Provide a raw Redis client connected to the test Redis container."""
|
||||||
|
yield from raw_redis_client_from_container(redis_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def minio_container() -> Generator[dict[str, str], None, None]:
|
||||||
|
"""Set up a Minio container for testing and yield connection settings."""
|
||||||
|
yield from minio_env()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def minio_config(minio_container: dict[str, str]) -> MinioConfig:
|
||||||
|
"""Provide MinioConfig built from the test container."""
|
||||||
|
return minio_config_from_env(minio_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def raw_minio_client(minio_container: dict[str, str]) -> Generator[Minio, None, None]:
|
||||||
|
"""Provide a raw Minio client connected to the test Minio container."""
|
||||||
|
yield from raw_minio_client_from_env(minio_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def postgres_container() -> Generator[str, None, None]:
|
||||||
|
"""Set up a Postgres container for testing and yield the Postgres URI."""
|
||||||
|
yield from postgres_uri()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def postgres_config(postgres_container: str) -> PostgresConfig:
|
||||||
|
"""Provide PostgresConfig built from the test container."""
|
||||||
|
return postgres_config_from_container(postgres_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def raw_postgres_client(
|
||||||
|
postgres_container: str,
|
||||||
|
) -> Generator[object, None, None]:
|
||||||
|
"""Provide a raw Postgres client connected to the test Postgres container."""
|
||||||
|
yield from raw_postgres_client_from_container(postgres_container)
|
||||||
@@ -5,22 +5,32 @@ from io import BytesIO
|
|||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
|
|
||||||
|
from minio import Minio
|
||||||
|
import psycopg
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from python_repositories.examples.artifact_object_repository import (
|
from python_repositories.examples.artifact_object_repository import (
|
||||||
ArtifactObjectRepository,
|
ArtifactObjectRepository,
|
||||||
)
|
)
|
||||||
from python_repositories.examples.user_json_repository import UserJsonRepository
|
from python_repositories.examples.user_json_repository import UserJsonRepository
|
||||||
|
from python_repositories.examples.user_table_repository import UserTableRepository
|
||||||
|
from tests.integration.postgres._containers import TEST_TABLE
|
||||||
|
|
||||||
pytestmark = pytest.mark.integration
|
pytestmark = [
|
||||||
|
pytest.mark.integration,
|
||||||
|
pytest.mark.needs_redis,
|
||||||
|
pytest.mark.needs_minio,
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="module", autouse=True)
|
@pytest.fixture(scope="module", autouse=True)
|
||||||
def set_example_env(
|
def set_example_env(
|
||||||
redis_container: str,
|
redis_container: str,
|
||||||
minio_container: dict[str, str],
|
minio_container: dict[str, str],
|
||||||
|
raw_minio_client: Minio,
|
||||||
) -> Generator[None, None, None]:
|
) -> Generator[None, None, None]:
|
||||||
"""Set env vars so example repositories can use from_env() defaults."""
|
"""Set env vars so example repositories can use from_env() defaults."""
|
||||||
|
_ = raw_minio_client
|
||||||
env_vars = {"REDIS_URI": redis_container, **minio_container}
|
env_vars = {"REDIS_URI": redis_container, **minio_container}
|
||||||
for key, value in env_vars.items():
|
for key, value in env_vars.items():
|
||||||
os.environ[key] = value
|
os.environ[key] = value
|
||||||
@@ -29,6 +39,24 @@ def set_example_env(
|
|||||||
_ = os.environ.pop(key, default=None)
|
_ = os.environ.pop(key, default=None)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="module", autouse=True)
|
||||||
|
def set_postgres_example_env(
|
||||||
|
postgres_container: str,
|
||||||
|
raw_postgres_client: psycopg.Connection,
|
||||||
|
) -> Generator[None, None, None]:
|
||||||
|
"""Set Postgres env vars for example repositories using from_env() defaults."""
|
||||||
|
env_vars = {
|
||||||
|
"POSTGRES_URI": postgres_container,
|
||||||
|
"POSTGRES_TABLE": TEST_TABLE,
|
||||||
|
"POSTGRES_PRIMARY_KEY": "id",
|
||||||
|
}
|
||||||
|
for key, value in env_vars.items():
|
||||||
|
os.environ[key] = value
|
||||||
|
yield
|
||||||
|
for key in env_vars:
|
||||||
|
_ = os.environ.pop(key, default=None)
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="module")
|
@pytest.fixture(scope="module")
|
||||||
def user_data() -> Generator[dict[str, str], None, None]:
|
def user_data() -> Generator[dict[str, str], None, None]:
|
||||||
"""Provide sample user data for tests."""
|
"""Provide sample user data for tests."""
|
||||||
@@ -70,3 +98,27 @@ def test_artifact_object_repository_store_and_get(
|
|||||||
assert received is not None
|
assert received is not None
|
||||||
artifact_data.seek(0)
|
artifact_data.seek(0)
|
||||||
assert received.read() == artifact_data.read()
|
assert received.read() == artifact_data.read()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.needs_postgres
|
||||||
|
def test_user_table_repository_save_and_get(
|
||||||
|
user_data: dict[str, str],
|
||||||
|
) -> None:
|
||||||
|
"""Test that UserTableRepository can save and retrieve a user."""
|
||||||
|
with UserTableRepository() as repo:
|
||||||
|
repo.save_user("alice", user_data)
|
||||||
|
user = repo.get_user("alice")
|
||||||
|
assert user is not None
|
||||||
|
assert user["name"] == user_data["name"]
|
||||||
|
assert user["email"] == user_data["email"]
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.needs_postgres
|
||||||
|
def test_user_table_repository_delete(
|
||||||
|
user_data: dict[str, str],
|
||||||
|
) -> None:
|
||||||
|
"""Test that UserTableRepository can delete a user."""
|
||||||
|
with UserTableRepository() as repo:
|
||||||
|
repo.save_user("alice", user_data)
|
||||||
|
repo.delete_user("alice")
|
||||||
|
assert repo.get_user("alice") is None
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
"""MinIO container session helpers for integration tests."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
|
||||||
|
from minio import Minio
|
||||||
|
from testcontainers.minio import MinioContainer
|
||||||
|
|
||||||
|
from python_repositories.config import MinioConfig
|
||||||
|
|
||||||
|
MINIO_ACCESS_KEY = "minioadmin"
|
||||||
|
MINIO_SECRET_KEY = "minioadmin"
|
||||||
|
MINIO_BUCKET = "test-bucket"
|
||||||
|
|
||||||
|
_minio_env: dict[str, str] | None = None
|
||||||
|
_minio_container: MinioContainer | None = None
|
||||||
|
_raw_minio_client: Minio | None = None
|
||||||
|
_minio_env_refs = 0
|
||||||
|
_raw_minio_client_refs = 0
|
||||||
|
|
||||||
|
|
||||||
|
def minio_env() -> Generator[dict[str, str], None, None]:
|
||||||
|
"""Yield session-scoped MinIO connection settings, starting the container once."""
|
||||||
|
global _minio_env, _minio_container, _minio_env_refs
|
||||||
|
if _minio_env is None:
|
||||||
|
_minio_container = MinioContainer(
|
||||||
|
image="minio/minio:latest",
|
||||||
|
access_key=MINIO_ACCESS_KEY,
|
||||||
|
secret_key=MINIO_SECRET_KEY,
|
||||||
|
)
|
||||||
|
_minio_container.start()
|
||||||
|
minio_host = _minio_container.get_container_host_ip()
|
||||||
|
minio_port = _minio_container.get_exposed_port(9000)
|
||||||
|
minio_endpoint = f"{minio_host}:{minio_port}"
|
||||||
|
_minio_env = {
|
||||||
|
"MINIO_ENDPOINT": minio_endpoint,
|
||||||
|
"MINIO_ACCESS_KEY": MINIO_ACCESS_KEY,
|
||||||
|
"MINIO_SECRET_KEY": MINIO_SECRET_KEY,
|
||||||
|
"MINIO_BUCKET": MINIO_BUCKET,
|
||||||
|
"MINIO_SECURE": "false",
|
||||||
|
}
|
||||||
|
|
||||||
|
_minio_env_refs += 1
|
||||||
|
yield _minio_env
|
||||||
|
_minio_env_refs -= 1
|
||||||
|
|
||||||
|
if _minio_env_refs == 0 and _minio_container is not None:
|
||||||
|
_minio_container.stop()
|
||||||
|
_minio_container = None
|
||||||
|
_minio_env = None
|
||||||
|
|
||||||
|
|
||||||
|
def minio_config_from_env(env: dict[str, str]) -> MinioConfig:
|
||||||
|
"""Build MinioConfig from container environment settings."""
|
||||||
|
return MinioConfig(
|
||||||
|
endpoint=env["MINIO_ENDPOINT"],
|
||||||
|
access_key=env["MINIO_ACCESS_KEY"],
|
||||||
|
secret_key=env["MINIO_SECRET_KEY"],
|
||||||
|
bucket=env["MINIO_BUCKET"],
|
||||||
|
secure=False,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def raw_minio_client_from_env(env: dict[str, str]) -> Generator[Minio, None, None]:
|
||||||
|
"""Yield a session-scoped raw MinIO client, reusing one client per session."""
|
||||||
|
global _raw_minio_client, _raw_minio_client_refs
|
||||||
|
if _raw_minio_client is None:
|
||||||
|
_raw_minio_client = Minio(
|
||||||
|
endpoint=env["MINIO_ENDPOINT"],
|
||||||
|
access_key=env["MINIO_ACCESS_KEY"],
|
||||||
|
secret_key=env["MINIO_SECRET_KEY"],
|
||||||
|
secure=False,
|
||||||
|
)
|
||||||
|
bucket_name = env["MINIO_BUCKET"]
|
||||||
|
if not _raw_minio_client.bucket_exists(bucket_name):
|
||||||
|
_raw_minio_client.make_bucket(bucket_name)
|
||||||
|
|
||||||
|
_raw_minio_client_refs += 1
|
||||||
|
yield _raw_minio_client
|
||||||
|
_raw_minio_client_refs -= 1
|
||||||
|
|
||||||
|
if _raw_minio_client_refs == 0 and _raw_minio_client is not None:
|
||||||
|
bucket_name = env["MINIO_BUCKET"]
|
||||||
|
objects = _raw_minio_client.list_objects(bucket_name, recursive=True)
|
||||||
|
for obj in objects:
|
||||||
|
_raw_minio_client.remove_object(bucket_name, obj.object_name)
|
||||||
|
_raw_minio_client = None
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
"""MinIO integration test fixtures."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
|
||||||
|
from minio import Minio
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from python_repositories.config import MinioConfig
|
||||||
|
from tests.integration.minio._containers import (
|
||||||
|
minio_config_from_env,
|
||||||
|
minio_env,
|
||||||
|
raw_minio_client_from_env,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def minio_container() -> Generator[dict[str, str], None, None]:
|
||||||
|
"""Set up a Minio container for testing and yield connection settings."""
|
||||||
|
yield from minio_env()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def minio_config(minio_container: dict[str, str]) -> MinioConfig:
|
||||||
|
"""Provide MinioConfig built from the test container."""
|
||||||
|
return minio_config_from_env(minio_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def raw_minio_client(minio_container: dict[str, str]) -> Generator[Minio, None, None]:
|
||||||
|
"""Provide a raw Minio client connected to the test Minio container."""
|
||||||
|
yield from raw_minio_client_from_env(minio_container)
|
||||||
+83
-28
@@ -1,20 +1,21 @@
|
|||||||
"""Integration tests for the MinioAdapter."""
|
"""Integration tests for the MinioAdapter."""
|
||||||
|
|
||||||
from collections.abc import Generator
|
from collections.abc import Generator
|
||||||
|
from dataclasses import replace
|
||||||
|
from io import BytesIO
|
||||||
import logging
|
import logging
|
||||||
import random
|
import random
|
||||||
from io import BytesIO
|
|
||||||
from unittest.mock import MagicMock
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
import pytest
|
|
||||||
from minio import Minio, S3Error
|
from minio import Minio, S3Error
|
||||||
|
import pytest
|
||||||
from urllib3.response import BaseHTTPResponse
|
from urllib3.response import BaseHTTPResponse
|
||||||
|
|
||||||
from python_repositories.adapters.minio_adapter import MinioAdapter
|
from python_repositories.adapters.minio_adapter import MinioAdapter
|
||||||
from python_repositories.config import MinioConfig
|
from python_repositories.config import MinioConfig
|
||||||
from tests.conftest import TEST_MINIO_CONFIG
|
from tests.conftest import TEST_MINIO_CONFIG
|
||||||
|
|
||||||
pytestmark = pytest.mark.integration
|
pytestmark = [pytest.mark.integration, pytest.mark.needs_minio]
|
||||||
|
|
||||||
|
|
||||||
def same_data(
|
def same_data(
|
||||||
@@ -101,7 +102,8 @@ def test_should_log_info_when_already_connected(
|
|||||||
"""Test that the MinioAdapter logs info when connect is called while already connected."""
|
"""Test that the MinioAdapter logs info when connect is called while already connected."""
|
||||||
with caplog.at_level(logging.INFO):
|
with caplog.at_level(logging.INFO):
|
||||||
minio_adapter.connect()
|
minio_adapter.connect()
|
||||||
assert "Already connected to Minio" in caplog.text
|
assert "Already connected" in caplog.text
|
||||||
|
assert "Minio" in caplog.text
|
||||||
|
|
||||||
|
|
||||||
def test_should_raise_connection_error_when_unable_to_connect() -> None:
|
def test_should_raise_connection_error_when_unable_to_connect() -> None:
|
||||||
@@ -118,18 +120,39 @@ def test_should_raise_connection_error_when_unable_to_connect() -> None:
|
|||||||
assert not adapter.is_connected()
|
assert not adapter.is_connected()
|
||||||
|
|
||||||
|
|
||||||
def test_should_log_info_when_creating_expected_bucket(
|
def test_connect_raises_when_bucket_missing(
|
||||||
|
raw_minio_client: Minio,
|
||||||
|
minio_config: MinioConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that connect fails when the configured bucket is missing."""
|
||||||
|
bucket_name = minio_config.bucket
|
||||||
|
raw_minio_client.remove_bucket(bucket_name)
|
||||||
|
adapter = MinioAdapter(config=minio_config)
|
||||||
|
|
||||||
|
try:
|
||||||
|
with pytest.raises(ConnectionError, match="does not exist"):
|
||||||
|
adapter.connect()
|
||||||
|
assert not adapter.is_connected()
|
||||||
|
finally:
|
||||||
|
raw_minio_client.make_bucket(bucket_name)
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_creates_bucket_when_create_bucket_if_missing_enabled(
|
||||||
raw_minio_client: Minio,
|
raw_minio_client: Minio,
|
||||||
minio_config: MinioConfig,
|
minio_config: MinioConfig,
|
||||||
caplog: pytest.LogCaptureFixture,
|
caplog: pytest.LogCaptureFixture,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test that the MinioAdapter logs info when creating the expected bucket."""
|
"""Test that connect can create the configured bucket when enabled."""
|
||||||
bucket_name = minio_config.bucket
|
bucket_name = minio_config.bucket
|
||||||
raw_minio_client.remove_bucket(bucket_name)
|
raw_minio_client.remove_bucket(bucket_name)
|
||||||
adapter = MinioAdapter(config=minio_config)
|
config = replace(minio_config, create_bucket_if_missing=True)
|
||||||
|
adapter = MinioAdapter(config=config)
|
||||||
|
|
||||||
with caplog.at_level(logging.INFO):
|
with caplog.at_level(logging.INFO):
|
||||||
adapter.connect()
|
adapter.connect()
|
||||||
assert f"Creating bucket '{bucket_name}'" in caplog.text
|
|
||||||
|
assert "Creating bucket" in caplog.text
|
||||||
|
assert bucket_name in caplog.text
|
||||||
|
|
||||||
|
|
||||||
def test_should_log_error_on_exception_during_exit(
|
def test_should_log_error_on_exception_during_exit(
|
||||||
@@ -212,16 +235,15 @@ def test_should_log_warning_when_getting_nonexistent_object(
|
|||||||
with caplog.at_level("WARNING"):
|
with caplog.at_level("WARNING"):
|
||||||
result = adapter.get(object_name)
|
result = adapter.get(object_name)
|
||||||
assert result is None
|
assert result is None
|
||||||
assert (
|
assert "Object not found" in caplog.text
|
||||||
f"Object '{object_name}' not found in bucket '{adapter._bucket_name}'"
|
assert object_name in caplog.text
|
||||||
in caplog.text
|
bucket_name = adapter._bucket_name
|
||||||
)
|
assert bucket_name is not None
|
||||||
|
assert bucket_name in caplog.text
|
||||||
|
|
||||||
|
|
||||||
def test_should_log_error_when_getting_with_s3error_other_than_no_such_key(
|
def test_should_reraise_s3error_other_than_no_such_key() -> None:
|
||||||
caplog: pytest.LogCaptureFixture,
|
"""Test that the MinioAdapter re-raises unhandled S3 errors."""
|
||||||
) -> None:
|
|
||||||
"""Test that the MinioAdapter logs an error for unhandled S3 errors."""
|
|
||||||
mock_client = MagicMock(spec=Minio)
|
mock_client = MagicMock(spec=Minio)
|
||||||
mock_client.bucket_exists.return_value = True
|
mock_client.bucket_exists.return_value = True
|
||||||
other_s3error = S3Error(
|
other_s3error = S3Error(
|
||||||
@@ -236,25 +258,20 @@ def test_should_log_error_when_getting_with_s3error_other_than_no_such_key(
|
|||||||
)
|
)
|
||||||
mock_client.get_object.side_effect = other_s3error
|
mock_client.get_object.side_effect = other_s3error
|
||||||
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
with caplog.at_level("ERROR"):
|
with pytest.raises(S3Error) as exc_info:
|
||||||
result = adapter.get("missing-object")
|
adapter.get("missing-object")
|
||||||
assert result is None
|
assert exc_info.value.code == "UnhandledError"
|
||||||
assert repr(other_s3error) in caplog.text
|
|
||||||
|
|
||||||
|
|
||||||
def test_should_log_error_when_getting_with_general_exception(
|
def test_should_reraise_general_exception() -> None:
|
||||||
caplog: pytest.LogCaptureFixture,
|
"""Test that the MinioAdapter re-raises general exceptions during get."""
|
||||||
) -> None:
|
|
||||||
"""Test that the MinioAdapter logs an error on general exceptions during get."""
|
|
||||||
mock_client = MagicMock(spec=Minio)
|
mock_client = MagicMock(spec=Minio)
|
||||||
mock_client.bucket_exists.return_value = True
|
mock_client.bucket_exists.return_value = True
|
||||||
general_exception = Exception("General failure")
|
general_exception = Exception("General failure")
|
||||||
mock_client.get_object.side_effect = general_exception
|
mock_client.get_object.side_effect = general_exception
|
||||||
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
with caplog.at_level("ERROR"):
|
with pytest.raises(Exception, match="General failure"):
|
||||||
result = adapter.get("missing-object")
|
adapter.get("missing-object")
|
||||||
assert result is None
|
|
||||||
assert repr(general_exception) in caplog.text
|
|
||||||
|
|
||||||
|
|
||||||
def test_should_put_data(
|
def test_should_put_data(
|
||||||
@@ -311,6 +328,44 @@ def test_should_raise_value_error_on_invalid_put_data(
|
|||||||
minio_adapter.put(object_name, invalid) # type: ignore
|
minio_adapter.put(object_name, invalid) # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_put_and_get_empty_bytesio(
|
||||||
|
minio_adapter: MinioAdapter,
|
||||||
|
minio_config: MinioConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that the MinioAdapter can put and get a zero-byte object."""
|
||||||
|
object_name = "empty_object"
|
||||||
|
empty_data = BytesIO()
|
||||||
|
assert minio_adapter.get(object_name) is None
|
||||||
|
minio_adapter.put(object_name, empty_data)
|
||||||
|
received_data = minio_adapter.get(object_name)
|
||||||
|
assert received_data is not None
|
||||||
|
assert same_data(empty_data, received_data)
|
||||||
|
minio_adapter._client.remove_object(minio_config.bucket, object_name) # type: ignore[union-attr]
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_distinguish_missing_object_from_empty_object(
|
||||||
|
minio_adapter: MinioAdapter,
|
||||||
|
minio_config: MinioConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that missing objects and zero-byte objects are distinguishable."""
|
||||||
|
object_name = "empty_object"
|
||||||
|
minio_adapter.put(object_name, BytesIO())
|
||||||
|
assert minio_adapter.get("other_object") is None
|
||||||
|
minio_adapter.delete(object_name)
|
||||||
|
assert minio_adapter.get(object_name) is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_list_zero_byte_object(
|
||||||
|
minio_adapter: MinioAdapter,
|
||||||
|
minio_config: MinioConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that a zero-byte object appears in object listings."""
|
||||||
|
object_name = "empty_object"
|
||||||
|
minio_adapter.put(object_name, BytesIO())
|
||||||
|
assert object_name in minio_adapter.list_objects()
|
||||||
|
minio_adapter._client.remove_object(minio_config.bucket, object_name) # type: ignore[union-attr]
|
||||||
|
|
||||||
|
|
||||||
def test_should_raise_value_error_on_invalid_put_content_type(
|
def test_should_raise_value_error_on_invalid_put_content_type(
|
||||||
data: BytesIO,
|
data: BytesIO,
|
||||||
minio_adapter: MinioAdapter,
|
minio_adapter: MinioAdapter,
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
"""Postgres container session helpers for integration tests."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
|
||||||
|
import psycopg
|
||||||
|
from psycopg.rows import dict_row
|
||||||
|
from testcontainers.postgres import PostgresContainer
|
||||||
|
|
||||||
|
from python_repositories.config import PostgresConfig
|
||||||
|
|
||||||
|
POSTGRES_IMAGE = "postgres:16"
|
||||||
|
TEST_TABLE = "test_items"
|
||||||
|
|
||||||
|
|
||||||
|
_postgres_uri: str | None = None
|
||||||
|
_postgres_container: PostgresContainer | None = None
|
||||||
|
_raw_postgres_client: psycopg.Connection | None = None
|
||||||
|
_postgres_uri_refs = 0
|
||||||
|
_raw_postgres_client_refs = 0
|
||||||
|
|
||||||
|
|
||||||
|
def postgres_uri() -> Generator[str, None, None]:
|
||||||
|
"""Yield a session-scoped Postgres URI, starting the container once."""
|
||||||
|
global _postgres_uri, _postgres_container, _postgres_uri_refs
|
||||||
|
if _postgres_uri is None:
|
||||||
|
_postgres_container = PostgresContainer(POSTGRES_IMAGE, driver=None)
|
||||||
|
_postgres_container.start()
|
||||||
|
_postgres_uri = _postgres_container.get_connection_url()
|
||||||
|
|
||||||
|
_postgres_uri_refs += 1
|
||||||
|
yield _postgres_uri
|
||||||
|
_postgres_uri_refs -= 1
|
||||||
|
|
||||||
|
if _postgres_uri_refs == 0 and _postgres_container is not None:
|
||||||
|
_postgres_container.stop()
|
||||||
|
_postgres_container = None
|
||||||
|
_postgres_uri = None
|
||||||
|
|
||||||
|
|
||||||
|
def postgres_config_from_container(uri: str) -> PostgresConfig:
|
||||||
|
"""Build PostgresConfig from a container URI."""
|
||||||
|
return PostgresConfig(uri=uri, table=TEST_TABLE, primary_key="id")
|
||||||
|
|
||||||
|
|
||||||
|
def raw_postgres_client_from_container(
|
||||||
|
uri: str,
|
||||||
|
) -> Generator[psycopg.Connection, None, None]:
|
||||||
|
"""Yield a session-scoped raw Postgres client, reusing one client per session."""
|
||||||
|
global _raw_postgres_client, _raw_postgres_client_refs
|
||||||
|
if _raw_postgres_client is None:
|
||||||
|
_raw_postgres_client = psycopg.connect(
|
||||||
|
uri,
|
||||||
|
row_factory=dict_row, # type: ignore[arg-type]
|
||||||
|
autocommit=True,
|
||||||
|
)
|
||||||
|
with _raw_postgres_client.cursor() as cursor:
|
||||||
|
cursor.execute(
|
||||||
|
f"""
|
||||||
|
CREATE TABLE IF NOT EXISTS {TEST_TABLE} (
|
||||||
|
id TEXT PRIMARY KEY,
|
||||||
|
name TEXT NOT NULL,
|
||||||
|
value INTEGER,
|
||||||
|
email TEXT
|
||||||
|
)
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
|
||||||
|
_raw_postgres_client_refs += 1
|
||||||
|
yield _raw_postgres_client
|
||||||
|
_raw_postgres_client_refs -= 1
|
||||||
|
|
||||||
|
if _raw_postgres_client_refs == 0 and _raw_postgres_client is not None:
|
||||||
|
with _raw_postgres_client.cursor() as cursor:
|
||||||
|
cursor.execute(f"TRUNCATE TABLE {TEST_TABLE}")
|
||||||
|
_raw_postgres_client.close()
|
||||||
|
_raw_postgres_client = None
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
"""Postgres integration test fixtures."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
|
||||||
|
import psycopg
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from python_repositories.config import PostgresConfig
|
||||||
|
from tests.integration.postgres._containers import (
|
||||||
|
postgres_config_from_container,
|
||||||
|
postgres_uri,
|
||||||
|
raw_postgres_client_from_container,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def postgres_container() -> Generator[str, None, None]:
|
||||||
|
"""Set up a Postgres container for testing and yield the Postgres URI."""
|
||||||
|
yield from postgres_uri()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def postgres_config(postgres_container: str) -> PostgresConfig:
|
||||||
|
"""Provide PostgresConfig built from the test container."""
|
||||||
|
return postgres_config_from_container(postgres_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def raw_postgres_client(
|
||||||
|
postgres_container: str,
|
||||||
|
) -> Generator[psycopg.Connection, None, None]:
|
||||||
|
"""Provide a raw Postgres client connected to the test container."""
|
||||||
|
yield from raw_postgres_client_from_container(postgres_container)
|
||||||
@@ -0,0 +1,318 @@
|
|||||||
|
"""Integration tests for the PostgresAdapter."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
import logging
|
||||||
|
|
||||||
|
import psycopg
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from python_repositories.adapters.postgres_adapter import PostgresAdapter
|
||||||
|
from python_repositories.config import PostgresConfig
|
||||||
|
from tests.integration.postgres._containers import TEST_TABLE
|
||||||
|
|
||||||
|
pytestmark = [pytest.mark.integration, pytest.mark.needs_postgres]
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="module")
|
||||||
|
def row() -> Generator[dict[str, object], None, None]:
|
||||||
|
"""Provide a sample row for tests."""
|
||||||
|
yield {"id": "test-id", "name": "Alice", "value": 42}
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function")
|
||||||
|
def row_in_postgres(
|
||||||
|
raw_postgres_client: psycopg.Connection,
|
||||||
|
row: dict[str, object],
|
||||||
|
) -> Generator[tuple[str, dict[str, object]], None, None]:
|
||||||
|
"""Fixture to set up a known row in Postgres before each test."""
|
||||||
|
with raw_postgres_client.cursor() as cursor:
|
||||||
|
cursor.execute(
|
||||||
|
f"INSERT INTO {TEST_TABLE} (id, name, value) VALUES (%s, %s, %s)",
|
||||||
|
(row["id"], row["name"], row["value"]),
|
||||||
|
)
|
||||||
|
|
||||||
|
yield str(row["id"]), row
|
||||||
|
|
||||||
|
with raw_postgres_client.cursor() as cursor:
|
||||||
|
cursor.execute(f"DELETE FROM {TEST_TABLE} WHERE id = %s", (row["id"],))
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="module")
|
||||||
|
def postgres_adapter(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
raw_postgres_client: psycopg.Connection,
|
||||||
|
) -> Generator[PostgresAdapter, None, None]:
|
||||||
|
"""Fixture to provide a connected PostgresAdapter instance."""
|
||||||
|
_ = raw_postgres_client # ensure test table exists before connect probe
|
||||||
|
adapter = PostgresAdapter(config=postgres_config)
|
||||||
|
adapter.connect()
|
||||||
|
yield adapter
|
||||||
|
adapter.disconnect()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="function", autouse=True)
|
||||||
|
def clear_postgres(raw_postgres_client: psycopg.Connection) -> None:
|
||||||
|
"""Fixture to clear all rows before each test."""
|
||||||
|
with raw_postgres_client.cursor() as cursor:
|
||||||
|
cursor.execute(f"TRUNCATE TABLE {TEST_TABLE}")
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_log_info_when_already_connected(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
caplog: pytest.LogCaptureFixture,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter logs info when connect is called while connected."""
|
||||||
|
with caplog.at_level(logging.INFO):
|
||||||
|
postgres_adapter.connect()
|
||||||
|
assert "Already connected" in caplog.text
|
||||||
|
assert "Postgres" in caplog.text
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_when_unable_to_connect() -> None:
|
||||||
|
"""Test that PostgresAdapter raises ConnectionError when unable to connect."""
|
||||||
|
adapter = PostgresAdapter(
|
||||||
|
config=PostgresConfig(
|
||||||
|
uri="postgresql://invalid:5432/nodb",
|
||||||
|
table=TEST_TABLE,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.connect()
|
||||||
|
assert adapter._client is None
|
||||||
|
assert not adapter.is_connected()
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_when_table_missing(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter raises ConnectionError when the table is missing."""
|
||||||
|
config = PostgresConfig(
|
||||||
|
uri=postgres_config.uri,
|
||||||
|
table="missing_table",
|
||||||
|
primary_key="id",
|
||||||
|
)
|
||||||
|
adapter = PostgresAdapter(config=config)
|
||||||
|
with pytest.raises(ConnectionError, match="does not exist"):
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_log_error_on_exception_during_exit(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
caplog: pytest.LogCaptureFixture,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter logs an error when an exception occurs during exit."""
|
||||||
|
try:
|
||||||
|
with PostgresAdapter(config=postgres_config) as adapter:
|
||||||
|
assert adapter.is_connected()
|
||||||
|
raise ValueError("Simulated error")
|
||||||
|
except ValueError:
|
||||||
|
pass
|
||||||
|
assert "Error while exiting context" in caplog.text
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_have_context_manager(postgres_config: PostgresConfig) -> None:
|
||||||
|
"""Test that PostgresAdapter can be used as a context manager."""
|
||||||
|
with PostgresAdapter(config=postgres_config) as adapter:
|
||||||
|
assert adapter._client is not None
|
||||||
|
assert adapter._client is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_fetch_one(
|
||||||
|
row_in_postgres: tuple[str, dict[str, object]],
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter can fetch a row by primary key."""
|
||||||
|
pk, row = row_in_postgres
|
||||||
|
fetched = postgres_adapter.fetch_one(pk)
|
||||||
|
assert fetched is not None
|
||||||
|
assert fetched["id"] == row["id"]
|
||||||
|
assert fetched["name"] == row["name"]
|
||||||
|
assert fetched["value"] == row["value"]
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_fetch_none_for_missing_row(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that fetching a non-existent row returns None."""
|
||||||
|
assert postgres_adapter.fetch_one("missing-id") is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_value_error_on_invalid_fetch_one_pk(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter raises ValueError for an invalid primary key."""
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
postgres_adapter.fetch_one(None)
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_on_fetch_one_when_not_connected(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that fetch_one raises ConnectionError when not connected."""
|
||||||
|
adapter = PostgresAdapter(config=postgres_config)
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.fetch_one("some-id")
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_upsert_row(
|
||||||
|
row: dict[str, object],
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter can insert a row."""
|
||||||
|
assert postgres_adapter.fetch_one(row["id"]) is None
|
||||||
|
postgres_adapter.upsert(row)
|
||||||
|
fetched = postgres_adapter.fetch_one(row["id"])
|
||||||
|
assert fetched is not None
|
||||||
|
assert fetched["name"] == row["name"]
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_update_row(
|
||||||
|
row_in_postgres: tuple[str, dict[str, object]],
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter can update an existing row."""
|
||||||
|
pk, _ = row_in_postgres
|
||||||
|
new_row = {"id": pk, "name": "Bob", "value": 99}
|
||||||
|
postgres_adapter.upsert(new_row)
|
||||||
|
fetched = postgres_adapter.fetch_one(pk)
|
||||||
|
assert fetched is not None
|
||||||
|
assert fetched["name"] == "Bob"
|
||||||
|
assert fetched["value"] == 99
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_value_error_on_invalid_upsert_row(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter raises ValueError for invalid upsert data."""
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
postgres_adapter.upsert({"name": "Alice"}) # missing primary key
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_value_error_on_non_dict_upsert_row(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter raises ValueError when upsert row is not a dict."""
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
postgres_adapter.upsert("not-a-dict") # type: ignore[arg-type]
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_on_upsert_when_not_connected(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
row: dict[str, object],
|
||||||
|
) -> None:
|
||||||
|
"""Test that upsert raises ConnectionError when not connected."""
|
||||||
|
adapter = PostgresAdapter(config=postgres_config)
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.upsert(row)
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_fetch_all_rows(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter can fetch all rows."""
|
||||||
|
postgres_adapter.upsert({"id": "a", "name": "Alice", "value": 1})
|
||||||
|
postgres_adapter.upsert({"id": "b", "name": "Bob", "value": 2})
|
||||||
|
rows = postgres_adapter.fetch_all()
|
||||||
|
assert len(rows) == 2
|
||||||
|
ids = {row["id"] for row in rows}
|
||||||
|
assert ids == {"a", "b"}
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_fetch_all_with_limit(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter respects fetch_all limit."""
|
||||||
|
postgres_adapter.upsert({"id": "a", "name": "Alice", "value": 1})
|
||||||
|
postgres_adapter.upsert({"id": "b", "name": "Bob", "value": 2})
|
||||||
|
rows = postgres_adapter.fetch_all(limit=1)
|
||||||
|
assert len(rows) == 1
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_return_empty_list_for_empty_table(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that fetch_all returns an empty list for an empty table."""
|
||||||
|
assert postgres_adapter.fetch_all() == []
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_value_error_on_invalid_fetch_all_limit(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter raises ValueError for an invalid limit."""
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
postgres_adapter.fetch_all(limit=-1)
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_on_fetch_all_when_not_connected(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that fetch_all raises ConnectionError when not connected."""
|
||||||
|
adapter = PostgresAdapter(config=postgres_config)
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.fetch_all()
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_delete_row(
|
||||||
|
row_in_postgres: tuple[str, dict[str, object]],
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that deleting a row removes it from the table."""
|
||||||
|
pk, _ = row_in_postgres
|
||||||
|
assert postgres_adapter.fetch_one(pk) is not None
|
||||||
|
postgres_adapter.delete(pk)
|
||||||
|
assert postgres_adapter.fetch_one(pk) is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_delete_idempotently(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that deleting a missing row does not raise."""
|
||||||
|
postgres_adapter.delete("missing-id")
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_value_error_on_invalid_delete_pk(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter raises ValueError for an invalid delete pk."""
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
postgres_adapter.delete(None)
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_on_delete_when_not_connected(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that delete raises ConnectionError when not connected."""
|
||||||
|
adapter = PostgresAdapter(config=postgres_config)
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.delete("some-id")
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_execute_sql(
|
||||||
|
row_in_postgres: tuple[str, dict[str, object]],
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter can execute read SQL."""
|
||||||
|
pk, _ = row_in_postgres
|
||||||
|
rows = postgres_adapter.execute(
|
||||||
|
f"SELECT * FROM {TEST_TABLE} WHERE id = %s",
|
||||||
|
(pk,),
|
||||||
|
)
|
||||||
|
assert len(rows) == 1
|
||||||
|
assert rows[0]["id"] == pk
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_value_error_on_invalid_execute_sql(
|
||||||
|
postgres_adapter: PostgresAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that PostgresAdapter raises ValueError for invalid SQL."""
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
postgres_adapter.execute("")
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_on_execute_when_not_connected(
|
||||||
|
postgres_config: PostgresConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that execute raises ConnectionError when not connected."""
|
||||||
|
adapter = PostgresAdapter(config=postgres_config)
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.execute("SELECT 1")
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
"""Redis container session helpers for integration tests."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
from typing import Any, cast
|
||||||
|
|
||||||
|
import redis
|
||||||
|
from testcontainers.core.container import DockerContainer
|
||||||
|
from testcontainers.core.waiting_utils import WaitStrategy, WaitStrategyTarget
|
||||||
|
|
||||||
|
from python_repositories.config import RedisConfig
|
||||||
|
|
||||||
|
REDIS_PORT = 6379
|
||||||
|
|
||||||
|
|
||||||
|
class _RedisPingWaitStrategy(WaitStrategy):
|
||||||
|
def __init__(self) -> None:
|
||||||
|
super().__init__()
|
||||||
|
self.with_transient_exceptions(redis.exceptions.ConnectionError)
|
||||||
|
|
||||||
|
def wait_until_ready(self, container: WaitStrategyTarget) -> None:
|
||||||
|
redis_container = cast("RedisTestContainer", container)
|
||||||
|
if not self._poll(lambda: redis_container.get_client().ping()):
|
||||||
|
raise redis.exceptions.ConnectionError("Could not connect to Redis")
|
||||||
|
|
||||||
|
|
||||||
|
class RedisTestContainer(DockerContainer):
|
||||||
|
"""Redis container using wait strategies instead of the deprecated decorator."""
|
||||||
|
|
||||||
|
def __init__(self, image: str, port: int = REDIS_PORT) -> None:
|
||||||
|
super().__init__(image, _wait_strategy=_RedisPingWaitStrategy())
|
||||||
|
self.port = port
|
||||||
|
self.with_exposed_ports(self.port)
|
||||||
|
|
||||||
|
def get_client(self, **kwargs: Any) -> redis.Redis:
|
||||||
|
return redis.Redis(
|
||||||
|
host=self.get_container_host_ip(),
|
||||||
|
port=self.get_exposed_port(self.port),
|
||||||
|
**kwargs,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
_redis_uri: str | None = None
|
||||||
|
_redis_container: RedisTestContainer | None = None
|
||||||
|
_raw_redis_client: redis.Redis | None = None
|
||||||
|
_redis_uri_refs = 0
|
||||||
|
_raw_redis_client_refs = 0
|
||||||
|
|
||||||
|
|
||||||
|
def redis_uri() -> Generator[str, None, None]:
|
||||||
|
"""Yield a session-scoped Redis URI, starting the container once."""
|
||||||
|
global _redis_uri, _redis_container, _redis_uri_refs
|
||||||
|
if _redis_uri is None:
|
||||||
|
_redis_container = RedisTestContainer(image="redis/redis-stack:7.2.0-v0")
|
||||||
|
_redis_container.start()
|
||||||
|
redis_host = _redis_container.get_container_host_ip()
|
||||||
|
redis_port = _redis_container.get_exposed_port(REDIS_PORT)
|
||||||
|
_redis_uri = f"redis://{redis_host}:{redis_port}"
|
||||||
|
|
||||||
|
_redis_uri_refs += 1
|
||||||
|
yield _redis_uri
|
||||||
|
_redis_uri_refs -= 1
|
||||||
|
|
||||||
|
if _redis_uri_refs == 0 and _redis_container is not None:
|
||||||
|
_redis_container.stop()
|
||||||
|
_redis_container = None
|
||||||
|
_redis_uri = None
|
||||||
|
|
||||||
|
|
||||||
|
def redis_config_from_container(uri: str) -> RedisConfig:
|
||||||
|
"""Build RedisConfig from a container URI."""
|
||||||
|
return RedisConfig(uri=uri)
|
||||||
|
|
||||||
|
|
||||||
|
def raw_redis_client_from_container(uri: str) -> Generator[redis.Redis, None, None]:
|
||||||
|
"""Yield a session-scoped raw Redis client, reusing one client per session."""
|
||||||
|
global _raw_redis_client, _raw_redis_client_refs
|
||||||
|
if _raw_redis_client is None:
|
||||||
|
_raw_redis_client = redis.Redis.from_url(
|
||||||
|
url=uri,
|
||||||
|
socket_connect_timeout=10,
|
||||||
|
)
|
||||||
|
|
||||||
|
_raw_redis_client_refs += 1
|
||||||
|
yield _raw_redis_client
|
||||||
|
_raw_redis_client_refs -= 1
|
||||||
|
|
||||||
|
if _raw_redis_client_refs == 0 and _raw_redis_client is not None:
|
||||||
|
_raw_redis_client.flushall()
|
||||||
|
_raw_redis_client.close()
|
||||||
|
_raw_redis_client = None
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
"""Redis integration test fixtures."""
|
||||||
|
|
||||||
|
from collections.abc import Generator
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
import redis
|
||||||
|
|
||||||
|
from python_repositories.config import RedisConfig
|
||||||
|
from tests.integration.redis._containers import (
|
||||||
|
raw_redis_client_from_container,
|
||||||
|
redis_config_from_container,
|
||||||
|
redis_uri,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def redis_container() -> Generator[str, None, None]:
|
||||||
|
"""Set up a Redis container for testing and yield the Redis URI."""
|
||||||
|
yield from redis_uri()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def redis_config(redis_container: str) -> RedisConfig:
|
||||||
|
"""Provide RedisConfig built from the test container."""
|
||||||
|
return redis_config_from_container(redis_container)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def raw_redis_client(redis_container: str) -> Generator[redis.Redis, None, None]:
|
||||||
|
"""Provide a raw Redis client connected to the test Redis container."""
|
||||||
|
yield from raw_redis_client_from_container(redis_container)
|
||||||
+76
-2
@@ -1,6 +1,7 @@
|
|||||||
"""Integration tests for the RedisAdapter."""
|
"""Integration tests for the RedisAdapter."""
|
||||||
|
|
||||||
from collections.abc import Generator
|
from collections.abc import Generator
|
||||||
|
import logging
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
import redis
|
import redis
|
||||||
@@ -9,7 +10,7 @@ from redis.commands.json.path import Path as RedisPath
|
|||||||
from python_repositories.adapters.redis_adapter import RedisAdapter
|
from python_repositories.adapters.redis_adapter import RedisAdapter
|
||||||
from python_repositories.config import RedisConfig
|
from python_repositories.config import RedisConfig
|
||||||
|
|
||||||
pytestmark = pytest.mark.integration
|
pytestmark = [pytest.mark.integration, pytest.mark.needs_redis]
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(scope="module")
|
@pytest.fixture(scope="module")
|
||||||
@@ -48,6 +49,17 @@ def clear_redis(raw_redis_client: redis.Redis) -> None:
|
|||||||
raw_redis_client.flushall()
|
raw_redis_client.flushall()
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_log_info_when_already_connected(
|
||||||
|
redis_adapter: RedisAdapter,
|
||||||
|
caplog: pytest.LogCaptureFixture,
|
||||||
|
) -> None:
|
||||||
|
"""Test that the RedisAdapter logs info when connect is called while already connected."""
|
||||||
|
with caplog.at_level(logging.INFO):
|
||||||
|
redis_adapter.connect()
|
||||||
|
assert "Already connected" in caplog.text
|
||||||
|
assert "Redis" in caplog.text
|
||||||
|
|
||||||
|
|
||||||
def test_should_raise_connection_error_when_unable_to_connect() -> None:
|
def test_should_raise_connection_error_when_unable_to_connect() -> None:
|
||||||
"""Test that the RedisAdapter raises ConnectionError when unable to connect."""
|
"""Test that the RedisAdapter raises ConnectionError when unable to connect."""
|
||||||
adapter = RedisAdapter(config=RedisConfig(uri="redis://invalid:6379"))
|
adapter = RedisAdapter(config=RedisConfig(uri="redis://invalid:6379"))
|
||||||
@@ -178,12 +190,45 @@ def test_should_raise_value_error_on_invalid_set_data(
|
|||||||
) -> None:
|
) -> None:
|
||||||
"""Test that the RedisAdapter raises ValueError when setting with invalid data."""
|
"""Test that the RedisAdapter raises ValueError when setting with invalid data."""
|
||||||
key = "test_key"
|
key = "test_key"
|
||||||
invalid_data = ["", 123, None, [], {}]
|
invalid_data = ["", 123, None, []]
|
||||||
for data in invalid_data:
|
for data in invalid_data:
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
redis_adapter.set(key, data) # type: ignore
|
redis_adapter.set(key, data) # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_set_and_get_empty_dict(
|
||||||
|
redis_adapter: RedisAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that the RedisAdapter can set and get an empty dict."""
|
||||||
|
key = "empty_key"
|
||||||
|
assert redis_adapter.get(key) is None
|
||||||
|
redis_adapter.set(key, {})
|
||||||
|
value = redis_adapter.get(key)
|
||||||
|
assert value is not None
|
||||||
|
assert value == {}
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_distinguish_missing_key_from_empty_dict(
|
||||||
|
redis_adapter: RedisAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that missing keys and empty dicts are distinguishable."""
|
||||||
|
key = "empty_key"
|
||||||
|
redis_adapter.set(key, {})
|
||||||
|
assert redis_adapter.get("other_key") is None
|
||||||
|
redis_adapter.delete(key)
|
||||||
|
assert redis_adapter.get(key) is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_list_empty_dict_key(
|
||||||
|
redis_adapter: RedisAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that a key with an empty dict appears in key listings."""
|
||||||
|
key = "empty_key"
|
||||||
|
redis_adapter.set(key, {})
|
||||||
|
assert key in redis_adapter.list_keys(key)
|
||||||
|
assert key in list(redis_adapter.scan_keys(key))
|
||||||
|
|
||||||
|
|
||||||
def test_should_raise_connection_error_on_set_when_not_connected(
|
def test_should_raise_connection_error_on_set_when_not_connected(
|
||||||
redis_config: RedisConfig,
|
redis_config: RedisConfig,
|
||||||
data: dict[str, str],
|
data: dict[str, str],
|
||||||
@@ -254,5 +299,34 @@ def test_should_raise_connection_error_on_list_keys_when_not_connected(
|
|||||||
adapter.list_keys("some_pattern")
|
adapter.list_keys("some_pattern")
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_scan_keys(
|
||||||
|
redis_adapter: RedisAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test scanning keys matching a pattern returns correct keys."""
|
||||||
|
redis_adapter.set("key1", {"a": 1})
|
||||||
|
redis_adapter.set("key2", {"b": 2})
|
||||||
|
keys = set(redis_adapter.scan_keys("key*"))
|
||||||
|
assert keys == {"key1", "key2"}
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_value_error_on_invalid_scan_keys_pattern(
|
||||||
|
redis_adapter: RedisAdapter,
|
||||||
|
) -> None:
|
||||||
|
"""Test that the RedisAdapter raises ValueError when scanning keys with an invalid pattern."""
|
||||||
|
invalid_patterns = ["", 123, None]
|
||||||
|
for pattern in invalid_patterns:
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
list(redis_adapter.scan_keys(pattern)) # type: ignore[arg-type]
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_raise_connection_error_on_scan_keys_when_not_connected(
|
||||||
|
redis_config: RedisConfig,
|
||||||
|
) -> None:
|
||||||
|
"""Test that the RedisAdapter raises ConnectionError when scanning keys while not connected."""
|
||||||
|
adapter = RedisAdapter(config=redis_config)
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
list(adapter.scan_keys("some_pattern"))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
pytest.main(["-s", "-v", __file__])
|
pytest.main(["-s", "-v", __file__])
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
"""Redis test container without testcontainers' deprecated wait decorator."""
|
|
||||||
|
|
||||||
from typing import Any, cast
|
|
||||||
|
|
||||||
import redis
|
|
||||||
from testcontainers.core.container import DockerContainer
|
|
||||||
from testcontainers.core.waiting_utils import WaitStrategy, WaitStrategyTarget
|
|
||||||
|
|
||||||
REDIS_PORT = 6379
|
|
||||||
|
|
||||||
|
|
||||||
class _RedisPingWaitStrategy(WaitStrategy):
|
|
||||||
def __init__(self) -> None:
|
|
||||||
super().__init__()
|
|
||||||
self.with_transient_exceptions(redis.exceptions.ConnectionError)
|
|
||||||
|
|
||||||
def wait_until_ready(self, container: WaitStrategyTarget) -> None:
|
|
||||||
redis_container = cast("RedisTestContainer", container)
|
|
||||||
if not self._poll(lambda: redis_container.get_client().ping()):
|
|
||||||
raise redis.exceptions.ConnectionError("Could not connect to Redis")
|
|
||||||
|
|
||||||
|
|
||||||
class RedisTestContainer(DockerContainer):
|
|
||||||
"""Redis container using wait strategies instead of the deprecated decorator."""
|
|
||||||
|
|
||||||
def __init__(self, image: str, port: int = REDIS_PORT) -> None:
|
|
||||||
super().__init__(image, _wait_strategy=_RedisPingWaitStrategy())
|
|
||||||
self.port = port
|
|
||||||
self.with_exposed_ports(self.port)
|
|
||||||
|
|
||||||
def get_client(self, **kwargs: Any) -> redis.Redis:
|
|
||||||
return redis.Redis(
|
|
||||||
host=self.get_container_host_ip(),
|
|
||||||
port=self.get_exposed_port(self.port),
|
|
||||||
**kwargs,
|
|
||||||
)
|
|
||||||
@@ -3,12 +3,12 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import builtins
|
import builtins
|
||||||
|
from collections.abc import Callable, Mapping, Sequence
|
||||||
import importlib
|
import importlib
|
||||||
import os
|
import os
|
||||||
|
from pathlib import Path
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
from collections.abc import Callable, Mapping, Sequence
|
|
||||||
from pathlib import Path
|
|
||||||
from types import ModuleType
|
from types import ModuleType
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
@@ -45,6 +45,7 @@ from python_repositories import JsonRepositoryInterface
|
|||||||
assert JsonRepositoryInterface is not None
|
assert JsonRepositoryInterface is not None
|
||||||
assert "python_repositories.adapters.redis_adapter" not in sys.modules
|
assert "python_repositories.adapters.redis_adapter" not in sys.modules
|
||||||
assert "python_repositories.adapters.minio_adapter" not in sys.modules
|
assert "python_repositories.adapters.minio_adapter" not in sys.modules
|
||||||
|
assert "python_repositories.adapters.postgres_adapter" not in sys.modules
|
||||||
"""
|
"""
|
||||||
result = subprocess.run(
|
result = subprocess.run(
|
||||||
[sys.executable, "-c", script],
|
[sys.executable, "-c", script],
|
||||||
@@ -58,10 +59,11 @@ assert "python_repositories.adapters.minio_adapter" not in sys.modules
|
|||||||
|
|
||||||
def test_lazy_adapter_load_succeeds_when_extra_present() -> None:
|
def test_lazy_adapter_load_succeeds_when_extra_present() -> None:
|
||||||
"""Adapters load when their optional dependencies are installed."""
|
"""Adapters load when their optional dependencies are installed."""
|
||||||
from python_repositories import MinioAdapter, RedisAdapter
|
from python_repositories import MinioAdapter, PostgresAdapter, RedisAdapter
|
||||||
|
|
||||||
assert RedisAdapter.__name__ == "RedisAdapter"
|
assert RedisAdapter.__name__ == "RedisAdapter"
|
||||||
assert MinioAdapter.__name__ == "MinioAdapter"
|
assert MinioAdapter.__name__ == "MinioAdapter"
|
||||||
|
assert PostgresAdapter.__name__ == "PostgresAdapter"
|
||||||
|
|
||||||
|
|
||||||
def test_redis_adapter_import_error_without_extra() -> None:
|
def test_redis_adapter_import_error_without_extra() -> None:
|
||||||
@@ -86,6 +88,17 @@ def test_minio_adapter_import_error_without_extra() -> None:
|
|||||||
importlib.reload(minio_adapter_module)
|
importlib.reload(minio_adapter_module)
|
||||||
|
|
||||||
|
|
||||||
|
def test_postgres_adapter_import_error_without_extra() -> None:
|
||||||
|
"""Missing postgres extra raises ImportError with install hint."""
|
||||||
|
import python_repositories.adapters.postgres_adapter as postgres_adapter_module
|
||||||
|
|
||||||
|
with patch.object(builtins, "__import__", new=_block_backend_import("psycopg")):
|
||||||
|
with pytest.raises(ImportError, match=r"python-repositories\[postgres\]"):
|
||||||
|
importlib.reload(postgres_adapter_module)
|
||||||
|
|
||||||
|
importlib.reload(postgres_adapter_module)
|
||||||
|
|
||||||
|
|
||||||
def test_top_level_lazy_import_propagates_redis_import_error() -> None:
|
def test_top_level_lazy_import_propagates_redis_import_error() -> None:
|
||||||
"""Top-level RedisAdapter access surfaces adapter import errors."""
|
"""Top-level RedisAdapter access surfaces adapter import errors."""
|
||||||
with patch(
|
with patch(
|
||||||
@@ -112,8 +125,45 @@ def test_top_level_lazy_import_propagates_minio_import_error() -> None:
|
|||||||
_ = python_repositories.MinioAdapter
|
_ = python_repositories.MinioAdapter
|
||||||
|
|
||||||
|
|
||||||
|
def test_top_level_lazy_import_propagates_postgres_import_error() -> None:
|
||||||
|
"""Top-level PostgresAdapter access surfaces adapter import errors."""
|
||||||
|
with patch(
|
||||||
|
"importlib.import_module",
|
||||||
|
side_effect=ImportError(
|
||||||
|
"Postgres support requires the postgres extra. "
|
||||||
|
"Install with: pip install python-repositories[postgres]"
|
||||||
|
),
|
||||||
|
):
|
||||||
|
with pytest.raises(ImportError, match=r"python-repositories\[postgres\]"):
|
||||||
|
_ = python_repositories.PostgresAdapter
|
||||||
|
|
||||||
|
|
||||||
def test_adapters_subpackage_lazy_import_succeeds() -> None:
|
def test_adapters_subpackage_lazy_import_succeeds() -> None:
|
||||||
"""Adapter subpackage imports delegate to the same lazy loader."""
|
"""Adapter subpackage imports delegate to the same lazy loader."""
|
||||||
from python_repositories.adapters import RedisAdapter
|
from python_repositories.adapters import RedisAdapter
|
||||||
|
|
||||||
assert RedisAdapter.__name__ == "RedisAdapter"
|
assert RedisAdapter.__name__ == "RedisAdapter"
|
||||||
|
|
||||||
|
|
||||||
|
def test_adapters_dir_exposes_lazy_exports() -> None:
|
||||||
|
"""dir(adapters) includes lazy adapter names for tab completion."""
|
||||||
|
import python_repositories.adapters as adapters
|
||||||
|
|
||||||
|
assert {"RedisAdapter", "MinioAdapter", "PostgresAdapter"}.issubset(
|
||||||
|
set(dir(adapters))
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_adapters_getattr_raises_for_unknown() -> None:
|
||||||
|
"""Unknown adapter names raise AttributeError."""
|
||||||
|
import python_repositories.adapters as adapters
|
||||||
|
|
||||||
|
with pytest.raises(AttributeError, match="has no attribute 'NoSuchAdapter'"):
|
||||||
|
_ = adapters.NoSuchAdapter
|
||||||
|
|
||||||
|
|
||||||
|
def test_top_level_dir_exposes_lazy_exports() -> None:
|
||||||
|
"""dir(python_repositories) includes lazy adapter names for tab completion."""
|
||||||
|
assert "RedisAdapter" in dir(python_repositories)
|
||||||
|
assert "MinioAdapter" in dir(python_repositories)
|
||||||
|
assert "PostgresAdapter" in dir(python_repositories)
|
||||||
|
|||||||
+15
-2
@@ -4,13 +4,15 @@ from __future__ import annotations
|
|||||||
|
|
||||||
from unittest.mock import MagicMock
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
|
from minio import Minio
|
||||||
|
import psycopg
|
||||||
import pytest
|
import pytest
|
||||||
import redis
|
import redis
|
||||||
from minio import Minio
|
|
||||||
|
|
||||||
from python_repositories.adapters.minio_adapter import MinioAdapter
|
from python_repositories.adapters.minio_adapter import MinioAdapter
|
||||||
|
from python_repositories.adapters.postgres_adapter import PostgresAdapter
|
||||||
from python_repositories.adapters.redis_adapter import RedisAdapter
|
from python_repositories.adapters.redis_adapter import RedisAdapter
|
||||||
from tests.conftest import TEST_MINIO_CONFIG, TEST_REDIS_CONFIG
|
from tests.conftest import TEST_MINIO_CONFIG, TEST_POSTGRES_CONFIG, TEST_REDIS_CONFIG
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
@@ -25,3 +27,14 @@ def minio_adapter() -> MinioAdapter:
|
|||||||
"""Provide a MinioAdapter with an injected mock client."""
|
"""Provide a MinioAdapter with an injected mock client."""
|
||||||
mock_client = MagicMock(spec=Minio)
|
mock_client = MagicMock(spec=Minio)
|
||||||
return MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
return MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def postgres_adapter() -> PostgresAdapter:
|
||||||
|
"""Provide a PostgresAdapter with an injected mock client."""
|
||||||
|
mock_client = MagicMock(spec=psycopg.Connection)
|
||||||
|
mock_cursor = MagicMock()
|
||||||
|
mock_cursor.__enter__ = MagicMock(return_value=mock_cursor)
|
||||||
|
mock_cursor.__exit__ = MagicMock(return_value=False)
|
||||||
|
mock_client.cursor.return_value = mock_cursor
|
||||||
|
return PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|||||||
@@ -5,11 +5,13 @@ from __future__ import annotations
|
|||||||
from typing import cast
|
from typing import cast
|
||||||
from unittest.mock import MagicMock, patch
|
from unittest.mock import MagicMock, patch
|
||||||
|
|
||||||
|
import psycopg
|
||||||
import redis
|
import redis
|
||||||
|
|
||||||
from python_repositories.adapters.minio_adapter import MinioAdapter
|
from python_repositories.adapters.minio_adapter import MinioAdapter
|
||||||
|
from python_repositories.adapters.postgres_adapter import PostgresAdapter
|
||||||
from python_repositories.adapters.redis_adapter import RedisAdapter
|
from python_repositories.adapters.redis_adapter import RedisAdapter
|
||||||
from tests.conftest import TEST_MINIO_CONFIG, TEST_REDIS_CONFIG
|
from tests.conftest import TEST_MINIO_CONFIG, TEST_POSTGRES_CONFIG, TEST_REDIS_CONFIG
|
||||||
|
|
||||||
|
|
||||||
class TestRedisConnectionHealth:
|
class TestRedisConnectionHealth:
|
||||||
@@ -161,3 +163,74 @@ class TestMinioConnectionHealth:
|
|||||||
assert reinjected.is_connected()
|
assert reinjected.is_connected()
|
||||||
|
|
||||||
assert mock_client.bucket_exists.call_count == 2
|
assert mock_client.bucket_exists.call_count == 2
|
||||||
|
|
||||||
|
|
||||||
|
class TestPostgresConnectionHealth:
|
||||||
|
def test_not_connected_when_no_client(self) -> None:
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
assert not adapter.is_connected()
|
||||||
|
|
||||||
|
def test_connected_when_probe_succeeds(
|
||||||
|
self, postgres_adapter: PostgresAdapter
|
||||||
|
) -> None:
|
||||||
|
assert postgres_adapter.is_connected()
|
||||||
|
cast(MagicMock, postgres_adapter._client).cursor.assert_called()
|
||||||
|
|
||||||
|
def test_stale_connection_when_probe_fails(
|
||||||
|
self, postgres_adapter: PostgresAdapter
|
||||||
|
) -> None:
|
||||||
|
mock_cursor = cast(MagicMock, postgres_adapter._client).cursor.return_value
|
||||||
|
mock_cursor.execute.side_effect = psycopg.OperationalError("connection lost")
|
||||||
|
|
||||||
|
assert not postgres_adapter.is_connected()
|
||||||
|
|
||||||
|
def test_cache_hit_avoids_second_probe(
|
||||||
|
self, postgres_adapter: PostgresAdapter
|
||||||
|
) -> None:
|
||||||
|
mock_client = cast(MagicMock, postgres_adapter._client)
|
||||||
|
|
||||||
|
with patch(
|
||||||
|
"python_repositories.adapters.connection_aware_adapter.time.monotonic",
|
||||||
|
return_value=100.0,
|
||||||
|
):
|
||||||
|
assert postgres_adapter.is_connected()
|
||||||
|
assert postgres_adapter.is_connected()
|
||||||
|
|
||||||
|
assert mock_client.cursor.call_count == 1
|
||||||
|
|
||||||
|
def test_cache_miss_runs_probe_again(
|
||||||
|
self, postgres_adapter: PostgresAdapter
|
||||||
|
) -> None:
|
||||||
|
mock_client = cast(MagicMock, postgres_adapter._client)
|
||||||
|
|
||||||
|
with patch(
|
||||||
|
"python_repositories.adapters.connection_aware_adapter.time.monotonic",
|
||||||
|
side_effect=[100.0, 102.0],
|
||||||
|
):
|
||||||
|
assert postgres_adapter.is_connected()
|
||||||
|
assert postgres_adapter.is_connected()
|
||||||
|
|
||||||
|
assert mock_client.cursor.call_count == 2
|
||||||
|
|
||||||
|
def test_disconnect_clears_cache(self, postgres_adapter: PostgresAdapter) -> None:
|
||||||
|
mock_client = cast(MagicMock, postgres_adapter._client)
|
||||||
|
|
||||||
|
with patch(
|
||||||
|
"python_repositories.adapters.connection_aware_adapter.time.monotonic",
|
||||||
|
return_value=100.0,
|
||||||
|
):
|
||||||
|
assert postgres_adapter.is_connected()
|
||||||
|
|
||||||
|
postgres_adapter.disconnect()
|
||||||
|
reinjected = PostgresAdapter(
|
||||||
|
config=postgres_adapter._config,
|
||||||
|
client=mock_client,
|
||||||
|
)
|
||||||
|
|
||||||
|
with patch(
|
||||||
|
"python_repositories.adapters.connection_aware_adapter.time.monotonic",
|
||||||
|
return_value=100.0,
|
||||||
|
):
|
||||||
|
assert reinjected.is_connected()
|
||||||
|
|
||||||
|
assert mock_client.cursor.call_count == 2
|
||||||
|
|||||||
@@ -1,11 +1,30 @@
|
|||||||
"""Unit tests for ConnectionAwareInterface."""
|
"""Unit tests for ConnectionAwareInterface."""
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from python_repositories.interfaces.connection_aware_interface import (
|
from python_repositories.interfaces.connection_aware_interface import (
|
||||||
ConnectionAwareInterface,
|
ConnectionAwareInterface,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class FakeConnection:
|
||||||
|
"""Plain class that satisfies ConnectionAwareInterface without inheritance."""
|
||||||
|
|
||||||
|
def connect(self) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def disconnect(self) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def is_connected(self) -> bool:
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
def accepts_connection_aware(connection: ConnectionAwareInterface) -> None:
|
||||||
|
"""Type-checking hook for ConnectionAwareInterface structural subtyping."""
|
||||||
|
connection.is_connected()
|
||||||
|
|
||||||
|
|
||||||
def test_instantiation_fails_when_connect_not_implemented() -> None:
|
def test_instantiation_fails_when_connect_not_implemented() -> None:
|
||||||
"""Test that instantiation fails if connect is not implemented."""
|
"""Test that instantiation fails if connect is not implemented."""
|
||||||
|
|
||||||
@@ -52,3 +71,10 @@ def test_instantiation_fails_when_is_connected_not_implemented() -> None:
|
|||||||
|
|
||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
_ = Incomplete() # type: ignore
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_structural_subtyping() -> None:
|
||||||
|
"""Test that a plain class satisfies ConnectionAwareInterface structurally."""
|
||||||
|
connection: ConnectionAwareInterface = FakeConnection()
|
||||||
|
accepts_connection_aware(connection)
|
||||||
|
assert isinstance(connection, ConnectionAwareInterface)
|
||||||
|
|||||||
@@ -3,9 +3,28 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from python_repositories.interfaces.context_aware_interface import ContextAwareInterface
|
from python_repositories.interfaces.context_aware_interface import ContextAwareInterface
|
||||||
|
|
||||||
|
|
||||||
|
class FakeContextManager:
|
||||||
|
"""Plain class that satisfies ContextAwareInterface without inheritance."""
|
||||||
|
|
||||||
|
def __enter__(self) -> FakeContextManager:
|
||||||
|
return self
|
||||||
|
|
||||||
|
def __exit__(
|
||||||
|
self, exc_type: type | None, exc_val: object | None, exc_tb: object | None
|
||||||
|
) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def accepts_context_aware(context: ContextAwareInterface) -> None:
|
||||||
|
"""Type-checking hook for ContextAwareInterface structural subtyping."""
|
||||||
|
with context:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def test_instantiation_fails_when_enter_not_implemented() -> None:
|
def test_instantiation_fails_when_enter_not_implemented() -> None:
|
||||||
"""Test that instantiation fails if __enter__ is not implemented."""
|
"""Test that instantiation fails if __enter__ is not implemented."""
|
||||||
|
|
||||||
@@ -32,3 +51,10 @@ def test_instantiation_fails_when_exit_not_implemented() -> None:
|
|||||||
|
|
||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
_ = Incomplete() # type: ignore
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_structural_subtyping() -> None:
|
||||||
|
"""Test that a plain class satisfies ContextAwareInterface structurally."""
|
||||||
|
context: ContextAwareInterface = FakeContextManager()
|
||||||
|
accepts_context_aware(context)
|
||||||
|
assert isinstance(context, ContextAwareInterface)
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
"""Unit tests for env_bool."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from python_repositories.config.env_bool import env_bool
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
("value", "expected"),
|
||||||
|
[
|
||||||
|
("true", True),
|
||||||
|
("1", True),
|
||||||
|
("yes", True),
|
||||||
|
("on", True),
|
||||||
|
("false", False),
|
||||||
|
("0", False),
|
||||||
|
("no", False),
|
||||||
|
("off", False),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_env_bool_parses_truthy_and_falsy(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
value: str,
|
||||||
|
expected: bool,
|
||||||
|
) -> None:
|
||||||
|
monkeypatch.setenv("TEST_BOOL", value)
|
||||||
|
assert env_bool("TEST_BOOL", default=not expected) is expected
|
||||||
|
|
||||||
|
|
||||||
|
def test_env_bool_returns_default_when_unset(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
|
monkeypatch.delenv("TEST_BOOL", raising=False)
|
||||||
|
assert env_bool("TEST_BOOL", default=True) is True
|
||||||
|
assert env_bool("TEST_BOOL", default=False) is False
|
||||||
|
|
||||||
|
|
||||||
|
def test_env_bool_raises_for_invalid_value(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
monkeypatch.setenv("TEST_BOOL", "not-a-bool")
|
||||||
|
with pytest.raises(ValueError, match="TEST_BOOL"):
|
||||||
|
env_bool("TEST_BOOL", default=False)
|
||||||
@@ -1,18 +1,52 @@
|
|||||||
"""Unit tests for JsonRepositoryInterface."""
|
"""Unit tests for JsonRepositoryInterface."""
|
||||||
|
|
||||||
|
from collections.abc import Iterator
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from python_repositories.interfaces.json_repository_interface import (
|
from python_repositories.interfaces.json_repository_interface import (
|
||||||
JsonRepositoryInterface,
|
JsonRepositoryInterface,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class InMemoryJsonRepo:
|
||||||
|
"""Plain class that satisfies JsonRepositoryInterface without inheritance."""
|
||||||
|
|
||||||
|
def get(self, key: str) -> dict[str, Any] | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def set(self, key: str, data: dict[str, Any]) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def delete(self, key: str) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def list_keys(self, pattern: str) -> list[str]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
def scan_keys(
|
||||||
|
self,
|
||||||
|
pattern: str,
|
||||||
|
*,
|
||||||
|
count: int | None = None,
|
||||||
|
) -> Iterator[str]:
|
||||||
|
del count
|
||||||
|
yield from self.list_keys(pattern)
|
||||||
|
|
||||||
|
|
||||||
|
def accepts_json_repo(repo: JsonRepositoryInterface) -> None:
|
||||||
|
"""Type-checking hook for JsonRepositoryInterface structural subtyping."""
|
||||||
|
repo.get("key")
|
||||||
|
|
||||||
|
|
||||||
def test_instantiation_fails_when_get_not_implemented() -> None:
|
def test_instantiation_fails_when_get_not_implemented() -> None:
|
||||||
"""Test that instantiation fails if get is not implemented."""
|
"""Test that instantiation fails if get is not implemented."""
|
||||||
|
|
||||||
class Incomplete(JsonRepositoryInterface):
|
class Incomplete(JsonRepositoryInterface):
|
||||||
"""A class that does not implement get."""
|
"""A class that does not implement get."""
|
||||||
|
|
||||||
def set(self, key: str, data: dict) -> None:
|
def set(self, key: str, data: dict[str, Any]) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def delete(self, key: str) -> None:
|
def delete(self, key: str) -> None:
|
||||||
@@ -31,7 +65,7 @@ def test_instantiation_fails_when_set_not_implemented() -> None:
|
|||||||
class Incomplete(JsonRepositoryInterface):
|
class Incomplete(JsonRepositoryInterface):
|
||||||
"""A class that does not implement set."""
|
"""A class that does not implement set."""
|
||||||
|
|
||||||
def get(self, key: str) -> dict | None:
|
def get(self, key: str) -> dict[str, Any] | None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def delete(self, key: str) -> None:
|
def delete(self, key: str) -> None:
|
||||||
@@ -50,10 +84,10 @@ def test_instantiation_fails_when_delete_not_implemented() -> None:
|
|||||||
class Incomplete(JsonRepositoryInterface):
|
class Incomplete(JsonRepositoryInterface):
|
||||||
"""A class that does not implement delete."""
|
"""A class that does not implement delete."""
|
||||||
|
|
||||||
def get(self, key: str) -> dict | None:
|
def get(self, key: str) -> dict[str, Any] | None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def set(self, key: str, data: dict) -> None:
|
def set(self, key: str, data: dict[str, Any]) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def list_keys(self, pattern: str) -> list[str]:
|
def list_keys(self, pattern: str) -> list[str]:
|
||||||
@@ -69,10 +103,10 @@ def test_instantiation_fails_when_list_keys_not_implemented() -> None:
|
|||||||
class Incomplete(JsonRepositoryInterface):
|
class Incomplete(JsonRepositoryInterface):
|
||||||
"""A class that does not implement list_keys."""
|
"""A class that does not implement list_keys."""
|
||||||
|
|
||||||
def get(self, key: str) -> dict | None:
|
def get(self, key: str) -> dict[str, Any] | None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def set(self, key: str, data: dict) -> None:
|
def set(self, key: str, data: dict[str, Any]) -> None:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def delete(self, key: str) -> None:
|
def delete(self, key: str) -> None:
|
||||||
@@ -80,3 +114,31 @@ def test_instantiation_fails_when_list_keys_not_implemented() -> None:
|
|||||||
|
|
||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
_ = Incomplete() # type: ignore
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_scan_keys_defaults_to_list_keys() -> None:
|
||||||
|
"""Test that the default scan_keys implementation delegates to list_keys."""
|
||||||
|
|
||||||
|
class Complete(JsonRepositoryInterface):
|
||||||
|
def get(self, key: str) -> dict[str, Any] | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def set(self, key: str, data: dict[str, Any]) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def delete(self, key: str) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def list_keys(self, pattern: str) -> list[str]:
|
||||||
|
return [f"{pattern}-1", f"{pattern}-2"]
|
||||||
|
|
||||||
|
repository = Complete()
|
||||||
|
|
||||||
|
assert list(repository.scan_keys("user")) == ["user-1", "user-2"]
|
||||||
|
|
||||||
|
|
||||||
|
def test_structural_subtyping() -> None:
|
||||||
|
"""Test that a plain class satisfies JsonRepositoryInterface structurally."""
|
||||||
|
repo: JsonRepositoryInterface = InMemoryJsonRepo()
|
||||||
|
accepts_json_repo(repo)
|
||||||
|
assert isinstance(repo, JsonRepositoryInterface)
|
||||||
|
|||||||
@@ -2,10 +2,12 @@
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from dataclasses import replace
|
||||||
from unittest.mock import MagicMock
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
|
from minio import Minio, S3Error
|
||||||
import pytest
|
import pytest
|
||||||
from minio import Minio
|
from urllib3.response import BaseHTTPResponse
|
||||||
|
|
||||||
from python_repositories.adapters.minio_adapter import MinioAdapter
|
from python_repositories.adapters.minio_adapter import MinioAdapter
|
||||||
from python_repositories.interfaces import ObjectRepositoryInterface
|
from python_repositories.interfaces import ObjectRepositoryInterface
|
||||||
@@ -53,3 +55,198 @@ def test_raises_when_client_provided_without_config() -> None:
|
|||||||
mock_client = MagicMock(spec=Minio)
|
mock_client = MagicMock(spec=Minio)
|
||||||
with pytest.raises(ValueError, match="config is required"):
|
with pytest.raises(ValueError, match="config is required"):
|
||||||
MinioAdapter(client=mock_client)
|
MinioAdapter(client=mock_client)
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_succeeds() -> None:
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
mock_client.list_buckets.assert_called_once()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_raises_on_failure() -> None:
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.list_buckets.side_effect = Exception("connection lost")
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError, match="Could not connect to Minio"):
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_skips_validation_when_client_cleared() -> None:
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
adapter.disconnect()
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
mock_client.list_buckets.assert_not_called()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_disconnects_before_reconnect(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
stale_client = MagicMock(spec=Minio)
|
||||||
|
new_client = MagicMock(spec=Minio)
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG)
|
||||||
|
adapter._client = stale_client
|
||||||
|
adapter._bucket_name = None
|
||||||
|
|
||||||
|
monkeypatch.setattr(
|
||||||
|
"python_repositories.adapters.minio_adapter.minio.Minio",
|
||||||
|
lambda *args, **kwargs: new_client,
|
||||||
|
)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
assert adapter._client is new_client
|
||||||
|
new_client.list_buckets.assert_called_once()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_skips_reconnect_when_already_connected(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
stale_client = MagicMock(spec=Minio)
|
||||||
|
stale_client.bucket_exists.return_value = True
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG)
|
||||||
|
adapter._client = stale_client
|
||||||
|
adapter._bucket_name = TEST_MINIO_CONFIG.bucket
|
||||||
|
|
||||||
|
minio_ctor = MagicMock()
|
||||||
|
monkeypatch.setattr(
|
||||||
|
"python_repositories.adapters.minio_adapter.minio.Minio",
|
||||||
|
minio_ctor,
|
||||||
|
)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
minio_ctor.assert_not_called()
|
||||||
|
assert adapter._client is stale_client
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_raises_when_bucket_missing(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.bucket_exists.return_value = False
|
||||||
|
|
||||||
|
monkeypatch.setattr(
|
||||||
|
"python_repositories.adapters.minio_adapter.minio.Minio",
|
||||||
|
lambda *args, **kwargs: mock_client,
|
||||||
|
)
|
||||||
|
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError, match="does not exist"):
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
mock_client.make_bucket.assert_not_called()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_creates_bucket_when_create_bucket_if_missing_enabled(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.bucket_exists.return_value = False
|
||||||
|
config = replace(TEST_MINIO_CONFIG, create_bucket_if_missing=True)
|
||||||
|
|
||||||
|
monkeypatch.setattr(
|
||||||
|
"python_repositories.adapters.minio_adapter.minio.Minio",
|
||||||
|
lambda *args, **kwargs: mock_client,
|
||||||
|
)
|
||||||
|
|
||||||
|
adapter = MinioAdapter(config=config)
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
mock_client.bucket_exists.assert_called_once_with(config.bucket)
|
||||||
|
mock_client.make_bucket.assert_called_once_with(config.bucket)
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_closes_response_on_success() -> None:
|
||||||
|
"""get() must close and release the get_object HTTP response."""
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.bucket_exists.return_value = True
|
||||||
|
mock_response = MagicMock()
|
||||||
|
mock_response.read.side_effect = [b"data", b""]
|
||||||
|
mock_client.get_object.return_value = mock_response
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
result = adapter.get("some-object")
|
||||||
|
|
||||||
|
assert result is not None
|
||||||
|
assert result.read() == b"data"
|
||||||
|
mock_response.close.assert_called_once()
|
||||||
|
mock_response.release_conn.assert_called_once()
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_closes_response_when_read_fails() -> None:
|
||||||
|
"""get() must close and release the response even if read() raises."""
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.bucket_exists.return_value = True
|
||||||
|
mock_response = MagicMock()
|
||||||
|
mock_response.read.side_effect = OSError("connection reset")
|
||||||
|
mock_client.get_object.return_value = mock_response
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(OSError, match="connection reset"):
|
||||||
|
adapter.get("some-object")
|
||||||
|
|
||||||
|
mock_response.close.assert_called_once()
|
||||||
|
mock_response.release_conn.assert_called_once()
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_returns_none_for_no_such_key() -> None:
|
||||||
|
"""get() returns None when the object does not exist."""
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.bucket_exists.return_value = True
|
||||||
|
mock_client.get_object.side_effect = S3Error(
|
||||||
|
MagicMock(spec=BaseHTTPResponse),
|
||||||
|
"NoSuchKey",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
bucket_name="test-bucket",
|
||||||
|
object_name="missing-object",
|
||||||
|
)
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
result = adapter.get("missing-object")
|
||||||
|
|
||||||
|
assert result is None
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_reraises_other_s3_errors() -> None:
|
||||||
|
"""get() re-raises S3 errors other than NoSuchKey."""
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.bucket_exists.return_value = True
|
||||||
|
other_s3error = S3Error(
|
||||||
|
MagicMock(spec=BaseHTTPResponse),
|
||||||
|
"AccessDenied",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
"",
|
||||||
|
bucket_name="test-bucket",
|
||||||
|
object_name="some-object",
|
||||||
|
)
|
||||||
|
mock_client.get_object.side_effect = other_s3error
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(S3Error) as exc_info:
|
||||||
|
adapter.get("some-object")
|
||||||
|
|
||||||
|
assert exc_info.value.code == "AccessDenied"
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_reraises_general_exception_from_get_object() -> None:
|
||||||
|
"""get() re-raises unexpected exceptions from get_object."""
|
||||||
|
mock_client = MagicMock(spec=Minio)
|
||||||
|
mock_client.bucket_exists.return_value = True
|
||||||
|
mock_client.get_object.side_effect = Exception("General failure")
|
||||||
|
adapter = MinioAdapter(config=TEST_MINIO_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(Exception, match="General failure"):
|
||||||
|
adapter.get("some-object")
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ def test_from_env_loads_all_fields(monkeypatch: pytest.MonkeyPatch) -> None:
|
|||||||
assert config.secret_key == "secret"
|
assert config.secret_key == "secret"
|
||||||
assert config.bucket == "my-bucket"
|
assert config.bucket == "my-bucket"
|
||||||
assert config.secure is True
|
assert config.secure is True
|
||||||
|
assert config.create_bucket_if_missing is False
|
||||||
|
|
||||||
|
|
||||||
def test_from_env_defaults_secure_to_true_when_unset(
|
def test_from_env_defaults_secure_to_true_when_unset(
|
||||||
@@ -33,33 +34,27 @@ def test_from_env_defaults_secure_to_true_when_unset(
|
|||||||
assert config.secure is True
|
assert config.secure is True
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
def test_from_env_reads_secure_from_env(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
("value", "expected"),
|
_set_required_minio_env(monkeypatch)
|
||||||
[
|
monkeypatch.setenv("MINIO_SECURE", "false")
|
||||||
("true", True),
|
assert MinioConfig.from_env(use_dotenv=False).secure is False
|
||||||
("1", True),
|
|
||||||
("yes", True),
|
|
||||||
("false", False),
|
def test_from_env_reads_create_bucket_if_missing_from_env(
|
||||||
("0", False),
|
|
||||||
("no", False),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
def test_from_env_parses_secure(
|
|
||||||
monkeypatch: pytest.MonkeyPatch,
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
value: str,
|
|
||||||
expected: bool,
|
|
||||||
) -> None:
|
) -> None:
|
||||||
_set_required_minio_env(monkeypatch)
|
_set_required_minio_env(monkeypatch)
|
||||||
monkeypatch.setenv("MINIO_SECURE", value)
|
monkeypatch.setenv("MINIO_CREATE_BUCKET_IF_MISSING", "true")
|
||||||
config = MinioConfig.from_env(use_dotenv=False)
|
assert MinioConfig.from_env(use_dotenv=False).create_bucket_if_missing is True
|
||||||
assert config.secure is expected
|
|
||||||
|
|
||||||
|
|
||||||
def test_from_env_raises_for_invalid_secure(monkeypatch: pytest.MonkeyPatch) -> None:
|
def test_from_env_defaults_create_bucket_if_missing_to_false_when_unset(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
_set_required_minio_env(monkeypatch)
|
_set_required_minio_env(monkeypatch)
|
||||||
monkeypatch.setenv("MINIO_SECURE", "not-a-bool")
|
monkeypatch.delenv("MINIO_CREATE_BUCKET_IF_MISSING", raising=False)
|
||||||
with pytest.raises(ValueError, match="MINIO_SECURE"):
|
config = MinioConfig.from_env(use_dotenv=False)
|
||||||
MinioConfig.from_env(use_dotenv=False)
|
assert config.create_bucket_if_missing is False
|
||||||
|
|
||||||
|
|
||||||
def test_from_env_raises_when_endpoint_missing(
|
def test_from_env_raises_when_endpoint_missing(
|
||||||
|
|||||||
@@ -3,11 +3,38 @@
|
|||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from python_repositories.interfaces.object_repository_interface import (
|
from python_repositories.interfaces.object_repository_interface import (
|
||||||
ObjectRepositoryInterface,
|
ObjectRepositoryInterface,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class InMemoryObjectRepo:
|
||||||
|
"""Plain class that satisfies ObjectRepositoryInterface without inheritance."""
|
||||||
|
|
||||||
|
def get(self, object_name: str) -> BytesIO | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def put(
|
||||||
|
self,
|
||||||
|
object_name: str,
|
||||||
|
data: BytesIO,
|
||||||
|
content_type: str = "application/octet-stream",
|
||||||
|
) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def delete(self, object_name: str) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def list_objects(self, prefix: str = "") -> list[str]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
|
||||||
|
def accepts_object_repo(repo: ObjectRepositoryInterface) -> None:
|
||||||
|
"""Type-checking hook for ObjectRepositoryInterface structural subtyping."""
|
||||||
|
repo.get("object")
|
||||||
|
|
||||||
|
|
||||||
def test_instantiation_fails_when_get_not_implemented() -> None:
|
def test_instantiation_fails_when_get_not_implemented() -> None:
|
||||||
"""Test that instantiation fails if get is not implemented."""
|
"""Test that instantiation fails if get is not implemented."""
|
||||||
|
|
||||||
@@ -97,3 +124,10 @@ def test_instantiation_fails_when_list_objects_not_implemented() -> None:
|
|||||||
|
|
||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
_ = Incomplete() # type: ignore
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_structural_subtyping() -> None:
|
||||||
|
"""Test that a plain class satisfies ObjectRepositoryInterface structurally."""
|
||||||
|
repo: ObjectRepositoryInterface = InMemoryObjectRepo()
|
||||||
|
accepts_object_repo(repo)
|
||||||
|
assert isinstance(repo, ObjectRepositoryInterface)
|
||||||
|
|||||||
@@ -0,0 +1,237 @@
|
|||||||
|
"""Unit tests for PostgresAdapter instantiation and injection."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from unittest.mock import MagicMock
|
||||||
|
|
||||||
|
import psycopg
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from python_repositories.adapters.postgres_adapter import PostgresAdapter
|
||||||
|
from python_repositories.interfaces import TableRepositoryInterface
|
||||||
|
from tests.conftest import TEST_POSTGRES_CONFIG
|
||||||
|
|
||||||
|
|
||||||
|
def _mock_cursor() -> MagicMock:
|
||||||
|
mock_cursor = MagicMock()
|
||||||
|
mock_cursor.__enter__ = MagicMock(return_value=mock_cursor)
|
||||||
|
mock_cursor.__exit__ = MagicMock(return_value=False)
|
||||||
|
return mock_cursor
|
||||||
|
|
||||||
|
|
||||||
|
def _mock_client(*, probe_raises: Exception | None = None) -> MagicMock:
|
||||||
|
mock_client = MagicMock(spec=psycopg.Connection)
|
||||||
|
mock_cursor = _mock_cursor()
|
||||||
|
if probe_raises is not None:
|
||||||
|
mock_cursor.execute.side_effect = probe_raises
|
||||||
|
mock_client.cursor.return_value = mock_cursor
|
||||||
|
return mock_client
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_adhere_to_interface() -> None:
|
||||||
|
assert issubclass(PostgresAdapter, TableRepositoryInterface)
|
||||||
|
_ = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_have_logger_when_instantiated() -> None:
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
assert hasattr(adapter, "logger")
|
||||||
|
assert adapter.logger is not None
|
||||||
|
|
||||||
|
|
||||||
|
def test_should_not_be_connected_when_instantiated() -> None:
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
assert adapter._client is None
|
||||||
|
assert not adapter.is_connected()
|
||||||
|
|
||||||
|
|
||||||
|
def test_constructs_with_injected_config_without_env(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
monkeypatch.delenv("POSTGRES_URI", raising=False)
|
||||||
|
monkeypatch.delenv("POSTGRES_TABLE", raising=False)
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
assert adapter._config == TEST_POSTGRES_CONFIG
|
||||||
|
|
||||||
|
|
||||||
|
def test_constructs_with_injected_client_without_env(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
monkeypatch.delenv("POSTGRES_URI", raising=False)
|
||||||
|
monkeypatch.delenv("POSTGRES_TABLE", raising=False)
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
assert adapter._client is mock_client
|
||||||
|
assert adapter._client_injected is True
|
||||||
|
|
||||||
|
|
||||||
|
def test_raises_when_client_provided_without_config() -> None:
|
||||||
|
mock_client = MagicMock(spec=psycopg.Connection)
|
||||||
|
with pytest.raises(ValueError, match="config is required"):
|
||||||
|
PostgresAdapter(client=mock_client)
|
||||||
|
|
||||||
|
|
||||||
|
def test_disconnect_does_not_close_injected_client() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
adapter.disconnect()
|
||||||
|
mock_client.close.assert_not_called()
|
||||||
|
assert adapter._client is None
|
||||||
|
|
||||||
|
|
||||||
|
class CustomEnvPostgresAdapter(PostgresAdapter):
|
||||||
|
uri_env_var_name = "CUSTOM_POSTGRES_URI"
|
||||||
|
table_env_var_name = "CUSTOM_POSTGRES_TABLE"
|
||||||
|
primary_key_env_var_name = "CUSTOM_POSTGRES_PRIMARY_KEY"
|
||||||
|
|
||||||
|
|
||||||
|
def test_subclass_custom_env_var_names(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
|
monkeypatch.setenv("CUSTOM_POSTGRES_URI", "postgresql://custom/mydb")
|
||||||
|
monkeypatch.setenv("CUSTOM_POSTGRES_TABLE", "items")
|
||||||
|
monkeypatch.setenv("CUSTOM_POSTGRES_PRIMARY_KEY", "item_id")
|
||||||
|
adapter = CustomEnvPostgresAdapter()
|
||||||
|
assert adapter._config.uri == "postgresql://custom/mydb"
|
||||||
|
assert adapter._config.table == "items"
|
||||||
|
assert adapter._config.primary_key == "item_id"
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_succeeds_when_probe_ok() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
assert mock_client.cursor.return_value.execute.call_count == 2
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_raises_on_probe_failure() -> None:
|
||||||
|
mock_client = _mock_client(probe_raises=psycopg.OperationalError("connection lost"))
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError, match="Could not connect to Postgres"):
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_skips_validation_when_client_cleared() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
adapter.disconnect()
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
mock_client.cursor.assert_not_called()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_reconnects_when_existing_client_unhealthy(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
stale_client = _mock_client(
|
||||||
|
probe_raises=psycopg.OperationalError("connection lost")
|
||||||
|
)
|
||||||
|
new_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
adapter._client = stale_client
|
||||||
|
|
||||||
|
monkeypatch.setattr("psycopg.connect", lambda *args, **kwargs: new_client)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
stale_client.close.assert_called_once()
|
||||||
|
assert adapter._client is new_client
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_skips_reconnect_when_already_connected(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
healthy_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
adapter._client = healthy_client
|
||||||
|
|
||||||
|
connect = MagicMock()
|
||||||
|
monkeypatch.setattr("psycopg.connect", connect)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
healthy_client.close.assert_not_called()
|
||||||
|
connect.assert_not_called()
|
||||||
|
assert adapter._client is healthy_client
|
||||||
|
|
||||||
|
|
||||||
|
def test_fetch_one_raises_value_error_on_invalid_pk() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ValueError, match="Primary key must not be None"):
|
||||||
|
adapter.fetch_one(None)
|
||||||
|
|
||||||
|
|
||||||
|
def test_fetch_one_raises_connection_error_when_not_connected() -> None:
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.fetch_one("some-id")
|
||||||
|
|
||||||
|
|
||||||
|
def test_upsert_raises_value_error_on_invalid_row() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ValueError, match="Row must be a dictionary"):
|
||||||
|
adapter.upsert("not-a-dict") # type: ignore[arg-type]
|
||||||
|
|
||||||
|
|
||||||
|
def test_upsert_raises_value_error_when_primary_key_missing() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ValueError, match="Row must include primary key column 'id'"):
|
||||||
|
adapter.upsert({"name": "Alice"})
|
||||||
|
|
||||||
|
|
||||||
|
def test_upsert_raises_connection_error_when_not_connected() -> None:
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.upsert({"id": "alice", "name": "Alice"})
|
||||||
|
|
||||||
|
|
||||||
|
def test_fetch_all_raises_value_error_on_invalid_limit() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ValueError, match="Limit must be a non-negative integer"):
|
||||||
|
adapter.fetch_all(limit=-1)
|
||||||
|
|
||||||
|
|
||||||
|
def test_execute_raises_value_error_on_invalid_sql() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ValueError, match="SQL must be a non-empty string"):
|
||||||
|
adapter.execute("")
|
||||||
|
|
||||||
|
|
||||||
|
def test_execute_raises_value_error_on_invalid_params() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ValueError, match="Params must be a tuple"):
|
||||||
|
adapter.execute("SELECT 1", []) # type: ignore[arg-type]
|
||||||
|
|
||||||
|
|
||||||
|
def test_upsert_with_primary_key_only_uses_do_nothing() -> None:
|
||||||
|
mock_client = _mock_client()
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
adapter.upsert({"id": "pk-only"})
|
||||||
|
|
||||||
|
mock_cursor = mock_client.cursor.return_value.__enter__.return_value
|
||||||
|
insert_call = mock_cursor.execute.call_args_list[-1]
|
||||||
|
assert insert_call[0][1] == ("pk-only",)
|
||||||
|
|
||||||
|
|
||||||
|
def test_execute_raises_connection_error_when_not_connected() -> None:
|
||||||
|
adapter = PostgresAdapter(config=TEST_POSTGRES_CONFIG)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
adapter.execute("SELECT 1")
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
"""Unit tests for PostgresConfig."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from python_repositories.config import PostgresConfig
|
||||||
|
|
||||||
|
|
||||||
|
def _set_required_postgres_env(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
|
monkeypatch.setenv("POSTGRES_URI", "postgresql://localhost/mydb")
|
||||||
|
monkeypatch.setenv("POSTGRES_TABLE", "users")
|
||||||
|
|
||||||
|
|
||||||
|
def test_from_env_loads_all_fields(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
|
_set_required_postgres_env(monkeypatch)
|
||||||
|
config = PostgresConfig.from_env(use_dotenv=False)
|
||||||
|
assert config.uri == "postgresql://localhost/mydb"
|
||||||
|
assert config.table == "users"
|
||||||
|
assert config.primary_key == "id"
|
||||||
|
|
||||||
|
|
||||||
|
def test_from_env_reads_primary_key_from_env(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
_set_required_postgres_env(monkeypatch)
|
||||||
|
monkeypatch.setenv("POSTGRES_PRIMARY_KEY", "user_id")
|
||||||
|
config = PostgresConfig.from_env(use_dotenv=False)
|
||||||
|
assert config.primary_key == "user_id"
|
||||||
|
|
||||||
|
|
||||||
|
def test_from_env_defaults_primary_key_to_id_when_unset(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
_set_required_postgres_env(monkeypatch)
|
||||||
|
monkeypatch.delenv("POSTGRES_PRIMARY_KEY", raising=False)
|
||||||
|
config = PostgresConfig.from_env(use_dotenv=False)
|
||||||
|
assert config.primary_key == "id"
|
||||||
|
|
||||||
|
|
||||||
|
def test_from_env_raises_when_uri_missing(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
|
monkeypatch.delenv("POSTGRES_URI", raising=False)
|
||||||
|
monkeypatch.setenv("POSTGRES_TABLE", "users")
|
||||||
|
with pytest.raises(Exception):
|
||||||
|
PostgresConfig.from_env(use_dotenv=False)
|
||||||
|
|
||||||
|
|
||||||
|
def test_from_env_raises_when_table_missing(monkeypatch: pytest.MonkeyPatch) -> None:
|
||||||
|
monkeypatch.setenv("POSTGRES_URI", "postgresql://localhost/mydb")
|
||||||
|
monkeypatch.delenv("POSTGRES_TABLE", raising=False)
|
||||||
|
with pytest.raises(Exception):
|
||||||
|
PostgresConfig.from_env(use_dotenv=False)
|
||||||
|
|
||||||
|
|
||||||
|
def test_from_env_respects_custom_env_var_names(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
monkeypatch.setenv("CUSTOM_POSTGRES_URI", "postgresql://custom/mydb")
|
||||||
|
monkeypatch.setenv("CUSTOM_POSTGRES_TABLE", "items")
|
||||||
|
monkeypatch.setenv("CUSTOM_POSTGRES_PRIMARY_KEY", "item_id")
|
||||||
|
config = PostgresConfig.from_env(
|
||||||
|
"CUSTOM_POSTGRES_URI",
|
||||||
|
"CUSTOM_POSTGRES_TABLE",
|
||||||
|
"CUSTOM_POSTGRES_PRIMARY_KEY",
|
||||||
|
use_dotenv=False,
|
||||||
|
)
|
||||||
|
assert config.uri == "postgresql://custom/mydb"
|
||||||
|
assert config.table == "items"
|
||||||
|
assert config.primary_key == "item_id"
|
||||||
@@ -69,3 +69,127 @@ def test_subclass_custom_env_var_name(monkeypatch: pytest.MonkeyPatch) -> None:
|
|||||||
monkeypatch.setenv("CUSTOM_REDIS_URI", "redis://custom:6379")
|
monkeypatch.setenv("CUSTOM_REDIS_URI", "redis://custom:6379")
|
||||||
adapter = CustomEnvRedisAdapter()
|
adapter = CustomEnvRedisAdapter()
|
||||||
assert adapter._config.uri == "redis://custom:6379"
|
assert adapter._config.uri == "redis://custom:6379"
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_succeeds_when_ping_ok() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
mock_client.ping.return_value = True
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
mock_client.ping.assert_called_once()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_raises_when_ping_false() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
mock_client.ping.return_value = False
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError, match="Could not connect to Redis"):
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_raises_on_redis_error() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
mock_client.ping.side_effect = redis.ConnectionError("connection lost")
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError, match="Could not connect to Redis"):
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_with_injected_client_skips_validation_when_client_cleared() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
adapter.disconnect()
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
mock_client.ping.assert_not_called()
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_reconnects_when_existing_client_unhealthy(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
stale_client = MagicMock(spec=redis.Redis)
|
||||||
|
stale_client.ping.side_effect = redis.ConnectionError("connection lost")
|
||||||
|
new_client = MagicMock(spec=redis.Redis)
|
||||||
|
new_client.ping.return_value = True
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG)
|
||||||
|
adapter._client = stale_client
|
||||||
|
|
||||||
|
monkeypatch.setattr("redis.Redis.from_url", lambda *args, **kwargs: new_client)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
stale_client.close.assert_called_once()
|
||||||
|
assert adapter._client is new_client
|
||||||
|
|
||||||
|
|
||||||
|
def test_connect_skips_reconnect_when_already_connected(
|
||||||
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
|
) -> None:
|
||||||
|
stale_client = MagicMock(spec=redis.Redis)
|
||||||
|
stale_client.ping.return_value = True
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG)
|
||||||
|
adapter._client = stale_client
|
||||||
|
|
||||||
|
from_url = MagicMock()
|
||||||
|
monkeypatch.setattr("redis.Redis.from_url", from_url)
|
||||||
|
|
||||||
|
adapter.connect()
|
||||||
|
|
||||||
|
stale_client.close.assert_not_called()
|
||||||
|
from_url.assert_not_called()
|
||||||
|
assert adapter._client is stale_client
|
||||||
|
|
||||||
|
|
||||||
|
def test_scan_keys_yields_decoded_keys() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
mock_client.scan_iter.return_value = iter([b"key1", b"key2"])
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
keys = list(adapter.scan_keys("key*"))
|
||||||
|
|
||||||
|
assert keys == ["key1", "key2"]
|
||||||
|
mock_client.scan_iter.assert_called_once_with(match="key*")
|
||||||
|
mock_client.keys.assert_not_called()
|
||||||
|
|
||||||
|
|
||||||
|
def test_scan_keys_forwards_count() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
mock_client.scan_iter.return_value = iter([b"key1"])
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
keys = list(adapter.scan_keys("key*", count=50))
|
||||||
|
|
||||||
|
assert keys == ["key1"]
|
||||||
|
mock_client.scan_iter.assert_called_once_with(match="key*", count=50)
|
||||||
|
|
||||||
|
|
||||||
|
def test_list_keys_raises_value_error_on_invalid_pattern() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
invalid_patterns = ["", 123, None]
|
||||||
|
for pattern in invalid_patterns:
|
||||||
|
with pytest.raises(ValueError, match="Pattern must be a non-empty string"):
|
||||||
|
adapter.list_keys(pattern) # type: ignore[arg-type]
|
||||||
|
|
||||||
|
|
||||||
|
def test_scan_keys_raises_value_error_on_invalid_pattern() -> None:
|
||||||
|
mock_client = MagicMock(spec=redis.Redis)
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG, client=mock_client)
|
||||||
|
|
||||||
|
invalid_patterns = ["", 123, None]
|
||||||
|
for pattern in invalid_patterns:
|
||||||
|
with pytest.raises(ValueError, match="Pattern must be a non-empty string"):
|
||||||
|
list(adapter.scan_keys(pattern)) # type: ignore[arg-type]
|
||||||
|
|
||||||
|
|
||||||
|
def test_scan_keys_raises_connection_error_when_not_connected() -> None:
|
||||||
|
adapter = RedisAdapter(config=TEST_REDIS_CONFIG)
|
||||||
|
|
||||||
|
with pytest.raises(ConnectionError):
|
||||||
|
list(adapter.scan_keys("key*"))
|
||||||
|
|||||||
@@ -0,0 +1,162 @@
|
|||||||
|
"""Unit tests for TableRepositoryInterface."""
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from python_repositories.interfaces.table_repository_interface import (
|
||||||
|
TableRepositoryInterface,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class InMemoryTableRepo:
|
||||||
|
"""Plain class that satisfies TableRepositoryInterface without inheritance."""
|
||||||
|
|
||||||
|
def fetch_one(self, pk: Any) -> dict[str, Any] | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def fetch_all(self, *, limit: int | None = None) -> list[dict[str, Any]]:
|
||||||
|
del limit
|
||||||
|
return []
|
||||||
|
|
||||||
|
def upsert(self, row: dict[str, Any]) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def delete(self, pk: Any) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def execute(
|
||||||
|
self,
|
||||||
|
sql: str,
|
||||||
|
params: tuple[Any, ...] = (),
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
del sql, params
|
||||||
|
return []
|
||||||
|
|
||||||
|
|
||||||
|
def accepts_table_repo(repo: TableRepositoryInterface) -> None:
|
||||||
|
"""Type-checking hook for TableRepositoryInterface structural subtyping."""
|
||||||
|
repo.fetch_one("pk")
|
||||||
|
|
||||||
|
|
||||||
|
def test_instantiation_fails_when_fetch_one_not_implemented() -> None:
|
||||||
|
"""Test that instantiation fails if fetch_one is not implemented."""
|
||||||
|
|
||||||
|
class Incomplete(TableRepositoryInterface):
|
||||||
|
def fetch_all(self, *, limit: int | None = None) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
def upsert(self, row: dict[str, Any]) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def delete(self, pk: Any) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def execute(
|
||||||
|
self,
|
||||||
|
sql: str,
|
||||||
|
params: tuple[Any, ...] = (),
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
with pytest.raises(TypeError):
|
||||||
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_instantiation_fails_when_fetch_all_not_implemented() -> None:
|
||||||
|
"""Test that instantiation fails if fetch_all is not implemented."""
|
||||||
|
|
||||||
|
class Incomplete(TableRepositoryInterface):
|
||||||
|
def fetch_one(self, pk: Any) -> dict[str, Any] | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def upsert(self, row: dict[str, Any]) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def delete(self, pk: Any) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def execute(
|
||||||
|
self,
|
||||||
|
sql: str,
|
||||||
|
params: tuple[Any, ...] = (),
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
with pytest.raises(TypeError):
|
||||||
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_instantiation_fails_when_upsert_not_implemented() -> None:
|
||||||
|
"""Test that instantiation fails if upsert is not implemented."""
|
||||||
|
|
||||||
|
class Incomplete(TableRepositoryInterface):
|
||||||
|
def fetch_one(self, pk: Any) -> dict[str, Any] | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def fetch_all(self, *, limit: int | None = None) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
def delete(self, pk: Any) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def execute(
|
||||||
|
self,
|
||||||
|
sql: str,
|
||||||
|
params: tuple[Any, ...] = (),
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
with pytest.raises(TypeError):
|
||||||
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_instantiation_fails_when_delete_not_implemented() -> None:
|
||||||
|
"""Test that instantiation fails if delete is not implemented."""
|
||||||
|
|
||||||
|
class Incomplete(TableRepositoryInterface):
|
||||||
|
def fetch_one(self, pk: Any) -> dict[str, Any] | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def fetch_all(self, *, limit: int | None = None) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
def upsert(self, row: dict[str, Any]) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def execute(
|
||||||
|
self,
|
||||||
|
sql: str,
|
||||||
|
params: tuple[Any, ...] = (),
|
||||||
|
) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
with pytest.raises(TypeError):
|
||||||
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_instantiation_fails_when_execute_not_implemented() -> None:
|
||||||
|
"""Test that instantiation fails if execute is not implemented."""
|
||||||
|
|
||||||
|
class Incomplete(TableRepositoryInterface):
|
||||||
|
def fetch_one(self, pk: Any) -> dict[str, Any] | None:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def fetch_all(self, *, limit: int | None = None) -> list[dict[str, Any]]:
|
||||||
|
return []
|
||||||
|
|
||||||
|
def upsert(self, row: dict[str, Any]) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
def delete(self, pk: Any) -> None:
|
||||||
|
pass
|
||||||
|
|
||||||
|
with pytest.raises(TypeError):
|
||||||
|
_ = Incomplete() # type: ignore
|
||||||
|
|
||||||
|
|
||||||
|
def test_structural_subtyping() -> None:
|
||||||
|
"""Test that a plain class satisfies TableRepositoryInterface structurally."""
|
||||||
|
repo: TableRepositoryInterface = InMemoryTableRepo()
|
||||||
|
accepts_table_repo(repo)
|
||||||
|
assert isinstance(repo, TableRepositoryInterface)
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
version = 1
|
version = 1
|
||||||
revision = 3
|
revision = 2
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
resolution-markers = [
|
resolution-markers = [
|
||||||
"python_full_version >= '3.15'",
|
"python_full_version >= '3.15'",
|
||||||
@@ -864,6 +864,64 @@ wheels = [
|
|||||||
{ url = "https://proxpi.lille-vemmelund.dk/index/pre-commit/pre_commit-4.6.0-py2.py3-none-any.whl", hash = "sha256:e2cf246f7299edcabcf15f9b0571fdce06058527f0a06535068a86d38089f29b" },
|
{ url = "https://proxpi.lille-vemmelund.dk/index/pre-commit/pre_commit-4.6.0-py2.py3-none-any.whl", hash = "sha256:e2cf246f7299edcabcf15f9b0571fdce06058527f0a06535068a86d38089f29b" },
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "psycopg"
|
||||||
|
version = "3.3.4"
|
||||||
|
source = { registry = "https://proxpi.lille-vemmelund.dk/index/" }
|
||||||
|
dependencies = [
|
||||||
|
{ name = "typing-extensions", marker = "python_full_version < '3.13'" },
|
||||||
|
{ name = "tzdata", marker = "sys_platform == 'win32'" },
|
||||||
|
]
|
||||||
|
sdist = { url = "https://proxpi.lille-vemmelund.dk/index/psycopg/psycopg-3.3.4.tar.gz", hash = "sha256:e21207764952cff81b6b8bdacad9a3939f2793367fdac2987b3aac36a651b5bc" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg/psycopg-3.3.4-py3-none-any.whl", hash = "sha256:b6bbc25ccf05c8fad3b061d9db2ef0909a555171b84b07f29458a447253d679a" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[package.optional-dependencies]
|
||||||
|
binary = [
|
||||||
|
{ name = "psycopg-binary", marker = "implementation_name != 'pypy'" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "psycopg-binary"
|
||||||
|
version = "3.3.4"
|
||||||
|
source = { registry = "https://proxpi.lille-vemmelund.dk/index/" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5ab28a2a7649df3b72e6b674b4c190e448e8e77cf496a65bd846472048de2089" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6402a9d8146cf4b3974ded3fd28a971e83dc6a0333eb7822524a3aa20b546578" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:580ae30a5f95ccd90008ec697d3ed6a4a2047a516407ad904283fa42086936e9" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e7510c37550f91a187e3660a8cc50d4b760f8c3b8b2f89ebc5698cd2c7f2c85d" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:77df19583501ea288eaf15ac0fe7ad01e6d8091a91d5c41df5c718f307d8e31b" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:018fbed325936da502feb546642c982dcc4b9ffdea32dfef78dbf3b7f7ad4070" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:17a21953a9e5ff3a16dab692625a3676e2f101db5e40072f39dbee2250194d68" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:eb05ee1c2b817d27c537333224c9e83c7afb86fe7296ba970990068baf819b16" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:773d573e11f437ce0bdb95b7c18dc58390494f96d43f8b45b9760436114f7652" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:71e55ccbdfae79a2ed9c6369c3008a3025817ff9d7e27b32a2d84e2a4267e66e" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp312-cp312-win_amd64.whl", hash = "sha256:494ca54901be8cf9eb7e02c25b731f2317c378efa44f43e8f9bd0e1184ae7be4" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fbd1d4ed566895ad2d3bf4ddfd8bae90026930ddf29df3b9d91d32c8c47866a7" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:75a9067e236f9b9ae3535b66fe99bddb33d39c0de10112e49b9ab11eee53dc31" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:b56b603ebcea8aa10b46228b8410ba7f13e7c2ee54389d4d9be0927fd8ce2a70" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c677c4ad433cb7150c8cd304a0769ae3bcfbe5ea0676eb53faa7b1443b16d0d3" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:26df2717e59c0473e4465a97dfb1b7afebaa479277870fd5784d1436470db47c" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:1dc1f79fd16bb1f3f4421417a514607539f17804d95c7ed617265369d1981cae" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:136f199a407b5348b9b857c504aff60c77622a28482e7195839ce1b51238c4cc" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b6f5a29e9c775b9f12a1a717aa7a2c80f9e1db6f27ba44a5b59c80ac61d2ffcf" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:ee17a2cf4943cde261adfad1bbc5bf38d6b3776d7afff74c7cabcbeaeb08c260" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5c4ab71be17bdca30cb34c34c4e1496e2f5d6f20c199c12bad226070b22ef9bf" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp313-cp313-win_amd64.whl", hash = "sha256:dbfdb9b6cc79f31104a7b162a2b921b765fcc62af6c00540a167a8de47e4ed38" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:28b7398fdd19db3232c884fb24550bdfe951221f510e195e233299e4c9b78f97" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1fbaa292a3c8bb61b45df1ad3da1908ccee7cb889db9425e3557d9e34e2a4829" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:94596f9e7633ee3f6440711d43bb70aa31cc0a46a900ab8b4201a366ace5c9e7" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8c0056529e68dbe9184cd4019a1f3d8f3a4ead2f6fc7a5afcf27d3314edd1277" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2c09aad7051326e7603c14e50636db9c01f78272dc54b3accff03d46370461e6" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:514404ed543efd620c85602b747df2a23cf1241b4067199e1a66f2d2757aaa41" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:46893c26858be12cc49ca4226ed6a60b4bfccadd946b3bebb783a60b38788228" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:df1d567fc430f6df15c9fcf67d87685fc49bdb325adc0db5af1adfb2f44eb5c9" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:6b9016b1714da4dd5ecaaa75b82098aa5a0b87854ce9b092e21c27c4ae23e014" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:47c656a8a7ba6eb0cff1801a4caaa9c8bdc12d03080e273aff1c8ac39971a77e" },
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/psycopg-binary/psycopg_binary-3.3.4-cp314-cp314-win_amd64.whl", hash = "sha256:c37e024c07308cd06cf3ec51bfd0e7f6157585a4d84d1bce4a7f5f7913719bf8" },
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pycparser"
|
name = "pycparser"
|
||||||
version = "3.0"
|
version = "3.0"
|
||||||
@@ -1056,7 +1114,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "python-repositories"
|
name = "python-repositories"
|
||||||
version = "0.5.0"
|
version = "2.2.0"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "python-dotenv" },
|
{ name = "python-dotenv" },
|
||||||
@@ -1068,6 +1126,9 @@ dependencies = [
|
|||||||
minio = [
|
minio = [
|
||||||
{ name = "minio" },
|
{ name = "minio" },
|
||||||
]
|
]
|
||||||
|
postgres = [
|
||||||
|
{ name = "psycopg", extra = ["binary"] },
|
||||||
|
]
|
||||||
redis = [
|
redis = [
|
||||||
{ name = "redis" },
|
{ name = "redis" },
|
||||||
]
|
]
|
||||||
@@ -1082,30 +1143,29 @@ dev = [
|
|||||||
{ name = "ruff" },
|
{ name = "ruff" },
|
||||||
{ name = "safety" },
|
{ name = "safety" },
|
||||||
{ name = "testcontainers" },
|
{ name = "testcontainers" },
|
||||||
{ name = "types-redis" },
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.metadata]
|
[package.metadata]
|
||||||
requires-dist = [
|
requires-dist = [
|
||||||
{ name = "minio", marker = "extra == 'minio'", specifier = ">=7.2.16" },
|
{ name = "minio", marker = "extra == 'minio'", specifier = ">=7.2.16" },
|
||||||
|
{ name = "psycopg", extras = ["binary"], marker = "extra == 'postgres'", specifier = ">=3.2.0" },
|
||||||
{ name = "python-dotenv", specifier = ">=1.0.0" },
|
{ name = "python-dotenv", specifier = ">=1.0.0" },
|
||||||
{ name = "python-utils", specifier = ">=0.1.0", index = "https://gitea.lille-vemmelund.dk/api/packages/brian/pypi/simple/" },
|
{ name = "python-utils", specifier = ">=0.1.0", index = "https://gitea.lille-vemmelund.dk/api/packages/brian/pypi/simple/" },
|
||||||
{ name = "redis", marker = "extra == 'redis'", specifier = ">=6.4.0" },
|
{ name = "redis", marker = "extra == 'redis'", specifier = ">=6.4.0" },
|
||||||
{ name = "structlog", specifier = ">=25.4.0" },
|
{ name = "structlog", specifier = ">=25.4.0" },
|
||||||
]
|
]
|
||||||
provides-extras = ["redis", "minio"]
|
provides-extras = ["redis", "minio", "postgres"]
|
||||||
|
|
||||||
[package.metadata.requires-dev]
|
[package.metadata.requires-dev]
|
||||||
dev = [
|
dev = [
|
||||||
{ name = "mypy", specifier = ">=1.17.1" },
|
{ name = "mypy", specifier = ">=2.1.0" },
|
||||||
{ name = "pre-commit", specifier = ">=4.3.0" },
|
{ name = "pre-commit", specifier = ">=4.6.0" },
|
||||||
{ name = "pytest", specifier = ">=8.4.1" },
|
{ name = "pytest", specifier = ">=8.4.1" },
|
||||||
{ name = "pytest-cov", specifier = ">=7.0.0" },
|
{ name = "pytest-cov", specifier = ">=7.0.0" },
|
||||||
{ name = "pyupgrade", specifier = ">=3.20.0" },
|
{ name = "pyupgrade", specifier = ">=3.21.2" },
|
||||||
{ name = "ruff", specifier = ">=0.12.11" },
|
{ name = "ruff", specifier = ">=0.15.20" },
|
||||||
{ name = "safety", specifier = ">=3.6.0" },
|
{ name = "safety", specifier = ">=3.6.0" },
|
||||||
{ name = "testcontainers", specifier = ">=4.13.0" },
|
{ name = "testcontainers", specifier = ">=4.13.0" },
|
||||||
{ name = "types-redis", specifier = ">=4.6.0.20241004" },
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1495,53 +1555,6 @@ wheels = [
|
|||||||
{ url = "https://proxpi.lille-vemmelund.dk/index/typer/typer-0.25.1-py3-none-any.whl", hash = "sha256:75caa44ed46a03fb2dab8808753ffacdbfea88495e74c85a28c5eefcf5f39c89" },
|
{ url = "https://proxpi.lille-vemmelund.dk/index/typer/typer-0.25.1-py3-none-any.whl", hash = "sha256:75caa44ed46a03fb2dab8808753ffacdbfea88495e74c85a28c5eefcf5f39c89" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "types-cffi"
|
|
||||||
version = "2.0.0.20260518"
|
|
||||||
source = { registry = "https://proxpi.lille-vemmelund.dk/index/" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "types-setuptools" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://proxpi.lille-vemmelund.dk/index/types-cffi/types_cffi-2.0.0.20260518.tar.gz", hash = "sha256:f9707e66c13454789a58f8843d1ded4a66f1e9c8b10bd24d5eb5e0f25c0c5472" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://proxpi.lille-vemmelund.dk/index/types-cffi/types_cffi-2.0.0.20260518-py3-none-any.whl", hash = "sha256:5b68a215a95d0eac4203b58e766ff7fe40c2e091b1fa1a9e54111f04cc560084" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "types-pyopenssl"
|
|
||||||
version = "24.1.0.20240722"
|
|
||||||
source = { registry = "https://proxpi.lille-vemmelund.dk/index/" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "cryptography" },
|
|
||||||
{ name = "types-cffi" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://proxpi.lille-vemmelund.dk/index/types-pyopenssl/types-pyOpenSSL-24.1.0.20240722.tar.gz", hash = "sha256:47913b4678a01d879f503a12044468221ed8576263c1540dcb0484ca21b08c39" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://proxpi.lille-vemmelund.dk/index/types-pyopenssl/types_pyOpenSSL-24.1.0.20240722-py3-none-any.whl", hash = "sha256:6a7a5d2ec042537934cfb4c9d4deb0e16c4c6250b09358df1f083682fe6fda54" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "types-redis"
|
|
||||||
version = "4.6.0.20241004"
|
|
||||||
source = { registry = "https://proxpi.lille-vemmelund.dk/index/" }
|
|
||||||
dependencies = [
|
|
||||||
{ name = "cryptography" },
|
|
||||||
{ name = "types-pyopenssl" },
|
|
||||||
]
|
|
||||||
sdist = { url = "https://proxpi.lille-vemmelund.dk/index/types-redis/types-redis-4.6.0.20241004.tar.gz", hash = "sha256:5f17d2b3f9091ab75384153bfa276619ffa1cf6a38da60e10d5e6749cc5b902e" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://proxpi.lille-vemmelund.dk/index/types-redis/types_redis-4.6.0.20241004-py3-none-any.whl", hash = "sha256:ef5da68cb827e5f606c8f9c0b49eeee4c2669d6d97122f301d3a55dc6a63f6ed" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "types-setuptools"
|
|
||||||
version = "82.0.0.20260518"
|
|
||||||
source = { registry = "https://proxpi.lille-vemmelund.dk/index/" }
|
|
||||||
sdist = { url = "https://proxpi.lille-vemmelund.dk/index/types-setuptools/types_setuptools-82.0.0.20260518.tar.gz", hash = "sha256:3b743cfe63d0981ea4c15b90710fc1ed41e3464a537d51e705be514e891c1d07" }
|
|
||||||
wheels = [
|
|
||||||
{ url = "https://proxpi.lille-vemmelund.dk/index/types-setuptools/types_setuptools-82.0.0.20260518-py3-none-any.whl", hash = "sha256:31c04a62b57a653a5021caf191be0f10f70df890f813b51f02bab3969d300f20" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "typing-extensions"
|
name = "typing-extensions"
|
||||||
version = "4.16.0"
|
version = "4.16.0"
|
||||||
@@ -1563,6 +1576,15 @@ wheels = [
|
|||||||
{ url = "https://proxpi.lille-vemmelund.dk/index/typing-inspection/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7" },
|
{ url = "https://proxpi.lille-vemmelund.dk/index/typing-inspection/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7" },
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tzdata"
|
||||||
|
version = "2026.3"
|
||||||
|
source = { registry = "https://proxpi.lille-vemmelund.dk/index/" }
|
||||||
|
sdist = { url = "https://proxpi.lille-vemmelund.dk/index/tzdata/tzdata-2026.3.tar.gz", hash = "sha256:4a1518b8993086a7982523e071643f3c0e5f213e75b21318e78bcabfff9d1415" }
|
||||||
|
wheels = [
|
||||||
|
{ url = "https://proxpi.lille-vemmelund.dk/index/tzdata/tzdata-2026.3-py2.py3-none-any.whl", hash = "sha256:dc096730c87af6cab1b171c9d532be840741ff5d459015e7f6947bd7d7e54931" },
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "urllib3"
|
name = "urllib3"
|
||||||
version = "2.7.0"
|
version = "2.7.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user