Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor database file names and update test workflows #6

Merged
merged 6 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ def move_db_files(db_resource: str):
"""

if "postgres" in db_resource:
logging.debug("Postgres selected. Renaming postgres files")
shutil.move(
"src/db/postgres_models.py",
"src/flask/flaskapp/models.py"
Expand All @@ -21,7 +22,15 @@ def move_db_files(db_resource: str):
"src/db/postgres_seeder.py",
"src/flask/flaskapp/seeder.py",
)
shutil.move(
".github/workflows/test_postgres.yml",
".github/workflows/test.yml"
)
else:
pathlib.Path(".github/workflows/test_postgres.yml").unlink()

if "mongo" in db_resource:
logging.debug("MongoDB selected. Renaming MongoDB files")
shutil.move(
"src/db/mongo_models.py",
"src/flask/flaskapp/models.py"
Expand All @@ -30,7 +39,12 @@ def move_db_files(db_resource: str):
"src/db/mongo_seeder.py",
"src/flask/flaskapp/seeder.py",
)

shutil.move(
".github/workflows/test_mongodb.yml",
".github/workflows/test.yml"
)
else:
pathlib.Path(".github/workflows/test_mongodb.yml").unlink()
def remove_aca_files() -> None:
"""Removes unneeded files if aca is not selected"""
file_names = (
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: Run Python E2E tests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test_package:
{% raw %}
name: Test ${{ matrix.os }} Python ${{ matrix.python_version }}
runs-on: ${{ matrix.os }}
{% endraw %}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
services:
db:
{% if "mongo" in cookiecutter.db_resource %}
image: mongo:4.2.24
ports:
- 27017:27017
env:
MONGO_INITDB_ROOT_USERNAME: mongodb
MONGO_INITDB_ROOT_PASSWORD: mongodb
MONGO_INITDB_DATABASE: relecloud
options: >-
--health-cmd mongo
--health-start-period 20s
--health-interval 10s
--health-timeout 5s
--health-retries 5
{% endif %}
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v2
with:
{% raw %}
python-version: ${{ matrix.python_version }}
architecture: x64
{% endraw %}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
playwright install chromium --with-deps
python3 -m pip install -e src
- name: Seed data and run Pytest tests
run: |
python3 -m flask --app src.flaskapp seed --filename="src/seed_data.json" --drop
python3 -m pytest
env:
MONGODB_HOST: localhost
MONGODB_USERNAME: mongodb
MONGODB_PASSWORD: mongodb
MONGODB_DATABASE: relecloud
MONGODB_PORT: 27017
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,13 @@ jobs:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
services:
db:
{% if "mongo" in cookiecutter.db_resource %}
image: mongo:4.2.24
ports:
- 27017:27017
env:
MONGO_INITDB_ROOT_USERNAME: mongodb
MONGO_INITDB_ROOT_PASSWORD: mongodb
MONGO_INITDB_DATABASE: relecloud
options: >-
--health-cmd mongo
--health-start-period 20s
--health-interval 10s
--health-timeout 5s
--health-retries 5
{% endif %}
{% if "postgres" in cookiecutter.db_resource %}
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
{% endif %}
steps:
- uses: actions/checkout@v3
- name: Setup python
Expand All @@ -67,29 +50,15 @@ jobs:
python3 src/manage.py loaddata src/seed_data.json
{% endif %}
{% if cookiecutter.project_backend == "flask" %}
{% if "postgres" in cookiecutter.db_resource %}
python3 -m flask --app src.flaskapp db upgrade --directory src/flaskapp/migrations
python3 -m flask --app src.flaskapp seed --filename src/seed_data.json
{% endif %}
{% if "mongodb" in cookiecutter.db_resource %}
python3 -m flask --app src.flaskapp seed --filename="src/seed_data.json" --drop
{% endif %}
{% endif %}
{% if cookiecutter.project_backend == "fastapi" %}
python3 src/fastapi_app/seed_data.py
{% endif %}
python3 -m pytest
env:
{% if "postgres" in cookiecutter.db_resource %}
POSTGRES_HOST: localhost
POSTGRES_USERNAME: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DATABASE: postgres
{% endif %}
{% if "mongodb" in cookiecutter.db_resource %}
MONGODB_HOST: localhost
MONGODB_USERNAME: mongodb
MONGODB_PASSWORD: mongodb
MONGODB_DATABASE: relecloud
MONGODB_PORT: 27017
{% endif %}
POSTGRES_DATABASE: postgres