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

Add type argument to SQLAlchemySchema and SQLAlchemyAutoSchema #652

Merged
merged 1 commit into from
Jan 15, 2025
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
8 changes: 5 additions & 3 deletions src/marshmallow_sqlalchemy/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from .convert import ModelConverter
from .exceptions import IncorrectSchemaTypeError
from .load_instance_mixin import LoadInstanceMixin
from .load_instance_mixin import LoadInstanceMixin, _ModelType


# This isn't really a field; it's a placeholder for the metaclass.
Expand Down Expand Up @@ -202,7 +202,7 @@ def get_declared_sqla_fields(cls, base_fields, converter, opts, dict_cls):


class SQLAlchemySchema(
LoadInstanceMixin.Schema, Schema, metaclass=SQLAlchemySchemaMeta
LoadInstanceMixin.Schema[_ModelType], Schema, metaclass=SQLAlchemySchemaMeta
):
"""Schema for a SQLAlchemy model or table.
Use together with `auto_field` to generate fields from columns.
Expand All @@ -226,7 +226,9 @@ class Meta:
OPTIONS_CLASS = SQLAlchemySchemaOpts


class SQLAlchemyAutoSchema(SQLAlchemySchema, metaclass=SQLAlchemyAutoSchemaMeta):
class SQLAlchemyAutoSchema(
SQLAlchemySchema[_ModelType], metaclass=SQLAlchemyAutoSchemaMeta
):
"""Schema that automatically generates fields from the columns of
a SQLAlchemy model or table.

Expand Down
21 changes: 18 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
from __future__ import annotations

import datetime as dt
from dataclasses import dataclass
from enum import Enum
from types import SimpleNamespace
from typing import Any

import pytest
import sqlalchemy as sa
from sqlalchemy.ext.associationproxy import association_proxy
from sqlalchemy.orm import (
DeclarativeMeta,
Mapped,
backref,
column_property,
Expand Down Expand Up @@ -60,8 +61,22 @@ def session(Base, models, engine):
CourseLevel = Enum("CourseLevel", "PRIMARY SECONDARY")


@dataclass
class Models:
Course: type[DeclarativeMeta]
School: type[DeclarativeMeta]
Student: type[DeclarativeMeta]
Teacher: type[DeclarativeMeta]
SubstituteTeacher: type[DeclarativeMeta]
Paper: type[DeclarativeMeta]
GradedPaper: type[DeclarativeMeta]
Seminar: type[DeclarativeMeta]
Lecture: type[DeclarativeMeta]
Keyword: type[DeclarativeMeta]


@pytest.fixture()
def models(Base: type):
def models(Base: type) -> Models:
# models adapted from https://github.com/wtforms/wtforms-sqlalchemy/blob/master/tests/tests.py
student_course = sa.Table(
"student_course",
Expand Down Expand Up @@ -221,7 +236,7 @@ class Lecture(Base):
"kw", "keyword", creator=lambda kw: Keyword(keyword=kw)
)

return SimpleNamespace(
return Models(
Course=Course,
School=School,
Student=Student,
Expand Down
18 changes: 9 additions & 9 deletions tests/test_sqlalchemy_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class EntityMixin:

@pytest.fixture
def sqla_auto_model_schema(models, request) -> SQLAlchemyAutoSchema:
class TeacherSchema(SQLAlchemyAutoSchema):
class TeacherSchema(SQLAlchemyAutoSchema[models.Teacher]):
class Meta:
model = models.Teacher

Expand All @@ -73,7 +73,7 @@ class Meta:

@pytest.fixture
def sqla_schema_with_relationships(models, request) -> SQLAlchemySchema:
class TeacherSchema(EntityMixin, SQLAlchemySchema):
class TeacherSchema(EntityMixin, SQLAlchemySchema[models.Teacher]):
class Meta:
model = models.Teacher

Expand All @@ -87,7 +87,7 @@ class Meta:

@pytest.fixture
def sqla_auto_model_schema_with_relationships(models, request) -> SQLAlchemyAutoSchema:
class TeacherSchema(SQLAlchemyAutoSchema):
class TeacherSchema(SQLAlchemyAutoSchema[models.Teacher]):
class Meta:
model = models.Teacher
include_relationships = True
Expand All @@ -102,7 +102,7 @@ class Meta:

@pytest.fixture
def sqla_schema_with_fks(models, request) -> SQLAlchemySchema:
class TeacherSchema(EntityMixin, SQLAlchemySchema):
class TeacherSchema(EntityMixin, SQLAlchemySchema[models.Teacher]):
class Meta:
model = models.Teacher

Expand All @@ -115,7 +115,7 @@ class Meta:

@pytest.fixture
def sqla_auto_model_schema_with_fks(models, request) -> SQLAlchemyAutoSchema:
class TeacherSchema(SQLAlchemyAutoSchema):
class TeacherSchema(SQLAlchemyAutoSchema[models.Teacher]):
class Meta:
model = models.Teacher
include_fk = True
Expand Down Expand Up @@ -186,7 +186,7 @@ def test_load(schema):
class TestLoadInstancePerSchemaInstance:
@pytest.fixture
def schema_no_load_instance(self, models, session):
class TeacherSchema(SQLAlchemySchema):
class TeacherSchema(SQLAlchemySchema[models.Teacher]): # type: ignore[name-defined]
class Meta:
model = models.Teacher
sqla_session = session
Expand All @@ -208,7 +208,7 @@ class Meta(schema_no_load_instance.Meta): # type: ignore[name-defined]

@pytest.fixture
def auto_schema_no_load_instance(self, models, session):
class TeacherSchema(SQLAlchemyAutoSchema):
class TeacherSchema(SQLAlchemyAutoSchema[models.Teacher]): # type: ignore[name-defined]
class Meta:
model = models.Teacher
sqla_session = session
Expand Down Expand Up @@ -302,7 +302,7 @@ class TeacherSchema(SQLAlchemySchema):

# https://github.com/marshmallow-code/marshmallow-sqlalchemy/issues/190
def test_auto_schema_skips_synonyms(models):
class TeacherSchema(SQLAlchemyAutoSchema):
class TeacherSchema(SQLAlchemyAutoSchema[models.Teacher]): # type: ignore[name-defined]
class Meta:
model = models.Teacher
include_fk = True
Expand All @@ -327,7 +327,7 @@ class Meta:

# Regresion test https://github.com/marshmallow-code/marshmallow-sqlalchemy/issues/306
def test_auto_field_works_with_ordered_flag(models):
class StudentSchema(SQLAlchemyAutoSchema):
class StudentSchema(SQLAlchemyAutoSchema[models.Student]): # type: ignore[name-defined]
class Meta:
model = models.Student
ordered = True
Expand Down
Loading