mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-03 19:40:16 -04:00
Set up User and Tag tests/fixtures, Fix data type errors
This commit is contained in:
parent
c1f7ff1df3
commit
012f941da7
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"python.testing.pytestArgs": [
|
||||||
|
"backend"
|
||||||
|
],
|
||||||
|
"python.testing.unittestEnabled": false,
|
||||||
|
"python.testing.pytestEnabled": true
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
from .entity_base import EntityBase
|
from .entity_base import EntityBase
|
||||||
from .sample_entity import SampleEntity
|
from .sample_entity import SampleEntity
|
||||||
from .tag_entity import TagEntity
|
from .tag_entity import TagEntity
|
||||||
from .user_entity import UserEntity
|
#from .user_entity import UserEntity
|
||||||
from .resource_entity import ResourceEntity
|
from .resource_entity import ResourceEntity
|
||||||
from .resource_tag_entity import ResourceTagEntity
|
from .resource_tag_entity import ResourceTagEntity
|
||||||
from .service_entity import ServiceEntity
|
from .service_entity import ServiceEntity
|
||||||
|
|
|
@ -2,9 +2,9 @@ from sqlalchemy import Enum
|
||||||
|
|
||||||
|
|
||||||
class ProgramEnum(Enum):
|
class ProgramEnum(Enum):
|
||||||
ECONOMIC = "economic"
|
ECONOMIC = 'ECONOMIC'
|
||||||
DOMESTIC = "domestic"
|
DOMESTIC = 'DOMESTIC'
|
||||||
COMMUNITY = "community"
|
COMMUNITY = 'COMMUNITY'
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__(name="program_enum")
|
super().__init__(name="program_enum")
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
""" Defines the table for storing resources """
|
""" Defines the table for storing resources """
|
||||||
|
|
||||||
# Import our mapped SQL types from SQLAlchemy
|
# Import our mapped SQL types from SQLAlchemy
|
||||||
from sqlalchemy import Integer, String, DateTime
|
from sqlalchemy import Integer, String, DateTime, ARRAY
|
||||||
|
|
||||||
# Import mapping capabilities from the SQLAlchemy ORM
|
# Import mapping capabilities from the SQLAlchemy ORM
|
||||||
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
from sqlalchemy.orm import Mapped, mapped_column, relationship
|
||||||
|
@ -28,8 +28,7 @@ class ResourceEntity(EntityBase):
|
||||||
name: Mapped[str] = mapped_column(String(32), nullable=False)
|
name: Mapped[str] = mapped_column(String(32), nullable=False)
|
||||||
summary: Mapped[str] = mapped_column(String(100), nullable=False)
|
summary: Mapped[str] = mapped_column(String(100), nullable=False)
|
||||||
link: Mapped[str] = mapped_column(String, nullable=False)
|
link: Mapped[str] = mapped_column(String, nullable=False)
|
||||||
program: Mapped[ProgramEnum] = mapped_column(ProgramEnum, nullable=False)
|
program: Mapped[list[ProgramEnum]] = mapped_column(ARRAY(ProgramEnum), nullable=False)
|
||||||
|
|
||||||
# relationships
|
# relationships
|
||||||
resourceTags: Mapped[list["ResourceTagEntity"]] = relationship(
|
resourceTags: Mapped[list["ResourceTagEntity"]] = relationship(
|
||||||
back_populates="resource", cascade="all,delete"
|
back_populates="resource", cascade="all,delete"
|
||||||
|
|
|
@ -21,5 +21,5 @@ class ServiceTagEntity(EntityBase):
|
||||||
tagId: Mapped[int] = mapped_column(ForeignKey("tag.id"))
|
tagId: Mapped[int] = mapped_column(ForeignKey("tag.id"))
|
||||||
|
|
||||||
# relationships
|
# relationships
|
||||||
service: Mapped["ServiceEntity"] = relationship(back_populates="resourceTags")
|
service: Mapped["ServiceEntity"] = relationship(back_populates="serviceTags")
|
||||||
tag: Mapped["TagEntity"] = relationship(back_populates="resourceTags")
|
tag: Mapped["TagEntity"] = relationship(back_populates="serviceTags")
|
||||||
|
|
|
@ -12,6 +12,10 @@ from .entity_base import EntityBase
|
||||||
# Import datetime for created_at type
|
# Import datetime for created_at type
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
|
from ..models.tag_model import Tag
|
||||||
|
|
||||||
|
from typing import Self
|
||||||
|
|
||||||
class TagEntity(EntityBase):
|
class TagEntity(EntityBase):
|
||||||
|
|
||||||
#set table name
|
#set table name
|
||||||
|
@ -27,17 +31,17 @@ class TagEntity(EntityBase):
|
||||||
serviceTags: Mapped[list["ServiceTagEntity"]] = relationship(back_populates="tag", cascade="all,delete")
|
serviceTags: Mapped[list["ServiceTagEntity"]] = relationship(back_populates="tag", cascade="all,delete")
|
||||||
|
|
||||||
|
|
||||||
"""
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_model(cls, model: Tag) -> Self:
|
def from_model(cls, model: Tag) -> Self:
|
||||||
|
"""
|
||||||
Create a user entity from model
|
Create a user entity from model
|
||||||
|
|
||||||
Args: model (User): the model to create the entity from
|
Args: model (User): the model to create the entity from
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
self: The entity
|
self: The entity
|
||||||
|
"""
|
||||||
|
|
||||||
return cls(
|
return cls(
|
||||||
id=model.id,
|
id=model.id,
|
||||||
|
@ -45,18 +49,17 @@ class TagEntity(EntityBase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def to_model(self) -> Tag:
|
def to_model(self) -> Tag:
|
||||||
|
"""
|
||||||
Create a user model from entity
|
Create a user model from entity
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
User: A User model for API usage
|
User: A User model for API usage
|
||||||
|
"""
|
||||||
|
|
||||||
return Tag(
|
return Tag(
|
||||||
id=self.id,
|
id=self.id,
|
||||||
content=self.id,
|
content=self.content,
|
||||||
)
|
)
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
# Import enums for Role and Program
|
# Import enums for Role and Program
|
||||||
from backend.entities.program_enum import ProgramEnum
|
from .program_enum import ProgramEnum
|
||||||
from .user_enum import RoleEnum
|
from .user_enum import RoleEnum
|
||||||
|
|
||||||
#Import models for User methods
|
#Import models for User methods
|
||||||
|
@ -36,9 +36,9 @@ class UserEntity(EntityBase):
|
||||||
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True)
|
||||||
created_at: Mapped[datetime] = mapped_column(DateTime, default=datetime.now)
|
created_at: Mapped[datetime] = mapped_column(DateTime, default=datetime.now)
|
||||||
username: Mapped[str] = mapped_column(String(32), nullable=False, default="", unique=True )
|
username: Mapped[str] = mapped_column(String(32), nullable=False, default="", unique=True )
|
||||||
role: Mapped[RoleEnum] = mapped_column(RoleEnum, nullable=False)
|
role: Mapped[RoleEnum] = mapped_column(String, nullable=False)
|
||||||
email: Mapped[str] = mapped_column(String(50), nullable=False, unique=True)
|
email: Mapped[str] = mapped_column(String(50), nullable=False, unique=True)
|
||||||
program: Mapped[list[ProgramEnum]] = mapped_column(ARRAY(ProgramEnum), nullable=False)
|
program: Mapped[list[str]] = mapped_column(ARRAY(String), nullable=False)
|
||||||
experience: Mapped[int] = mapped_column(Integer, nullable=False)
|
experience: Mapped[int] = mapped_column(Integer, nullable=False)
|
||||||
group: Mapped[str] = mapped_column(String(50))
|
group: Mapped[str] = mapped_column(String(50))
|
||||||
|
|
||||||
|
@ -56,13 +56,13 @@ class UserEntity(EntityBase):
|
||||||
|
|
||||||
return cls(
|
return cls(
|
||||||
id=model.id,
|
id=model.id,
|
||||||
username=model.username,
|
|
||||||
email=model.email,
|
|
||||||
experience=model.experience,
|
|
||||||
group=model.group,
|
|
||||||
program=model.programtype,
|
|
||||||
role=model.usertype,
|
|
||||||
created_at=model.created_at,
|
created_at=model.created_at,
|
||||||
|
username=model.username,
|
||||||
|
role=model.usertype,
|
||||||
|
email=model.email,
|
||||||
|
program=model.programtype,
|
||||||
|
experience=model.experience,
|
||||||
|
group=model.group,
|
||||||
)
|
)
|
||||||
|
|
||||||
def to_model(self) -> User:
|
def to_model(self) -> User:
|
||||||
|
|
|
@ -4,9 +4,9 @@ from sqlalchemy import Enum
|
||||||
class RoleEnum(Enum):
|
class RoleEnum(Enum):
|
||||||
"""Determine role for User"""
|
"""Determine role for User"""
|
||||||
|
|
||||||
ADMIN = "ADMIN"
|
ADMIN = 'ADMIN'
|
||||||
EMPLOYEE = "EMPLOYEE"
|
EMPLOYEE = 'EMPLOYEE'
|
||||||
VOLUNTEER = "VOLUNTEER"
|
VOLUNTEER = 'VOLUNTEER'
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__(name="role_enum")
|
super().__init__(name="role_enum")
|
||||||
|
|
|
@ -6,12 +6,12 @@ from typing import Optional
|
||||||
|
|
||||||
|
|
||||||
class ProgramTypeEnum(str, Enum):
|
class ProgramTypeEnum(str, Enum):
|
||||||
DOMESTIC = "DOMESTIC"
|
DOMESTIC = 'DOMESTIC'
|
||||||
ECONOMIC = "ECONOMIC"
|
ECONOMIC = 'ECONOMIC'
|
||||||
COMMUNITY = "COMMUNITY"
|
COMMUNITY = 'COMMUNITY'
|
||||||
|
|
||||||
|
|
||||||
class UserTypeEnum(str, Enum):
|
class UserTypeEnum(str, Enum):
|
||||||
ADMIN = "ADMIN"
|
ADMIN = 'ADMIN'
|
||||||
EMPLOYEE = "EMPLOYEE"
|
EMPLOYEE = 'EMPLOYEE'
|
||||||
VOLUNTEER = "VOLUNTEER"
|
VOLUNTEER = 'VOLUNTEER'
|
||||||
|
|
|
@ -12,6 +12,6 @@ class User(BaseModel):
|
||||||
email: str = Field(..., description="The e-mail of the user")
|
email: str = Field(..., description="The e-mail of the user")
|
||||||
experience: int = Field(..., description="Years of Experience of the User")
|
experience: int = Field(..., description="Years of Experience of the User")
|
||||||
group: str
|
group: str
|
||||||
programtype: List[ProgramTypeEnum]
|
programtype: List[str]
|
||||||
usertype: UserTypeEnum
|
usertype: str
|
||||||
created_at: Optional[datetime]
|
created_at: Optional[datetime]
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
from .user import UserService
|
||||||
|
from .resource import ResourceService
|
||||||
|
from .tag import TagService
|
||||||
|
from .service import ServiceService
|
|
@ -1,6 +1,9 @@
|
||||||
from fastapi import Depends
|
from fastapi import Depends
|
||||||
from ..database import db_session
|
from ..database import db_session
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
|
from ..models.tag_model import Tag
|
||||||
|
from ..entities.tag_entity import TagEntity
|
||||||
|
from sqlalchemy import select
|
||||||
|
|
||||||
|
|
||||||
class TagService:
|
class TagService:
|
||||||
|
@ -8,6 +11,10 @@ class TagService:
|
||||||
def __init__(self, session: Session = Depends(db_session)):
|
def __init__(self, session: Session = Depends(db_session)):
|
||||||
self._session = session
|
self._session = session
|
||||||
|
|
||||||
#get all tags - emma
|
def all(self) -> list[Tag]:
|
||||||
def get_all_tags():
|
"""Returns a list of all Tags"""
|
||||||
return
|
|
||||||
|
query = select(TagEntity)
|
||||||
|
entities = self._session.scalars(query).all()
|
||||||
|
|
||||||
|
return [entity.to_model() for entity in entities]
|
||||||
|
|
|
@ -12,27 +12,24 @@ class UserService:
|
||||||
self._session = session
|
self._session = session
|
||||||
|
|
||||||
|
|
||||||
def get_user_by_id(self) -> User:
|
def get_user_by_id(self, id: int) -> User:
|
||||||
"""
|
"""
|
||||||
Gets a user by id from the database
|
Gets a user by id from the database
|
||||||
|
|
||||||
Returns: A User Pydantic model
|
Returns: A User Pydantic model
|
||||||
|
|
||||||
"""
|
"""
|
||||||
user = (
|
query = select(UserEntity).where(UserEntity.id == id)
|
||||||
self._session.query(UserEntity)
|
user_entity: UserEntity | None = self._session.scalar(query)
|
||||||
.filter(UserEntity.id == id)
|
|
||||||
)
|
|
||||||
|
|
||||||
if user is None:
|
if user_entity is None:
|
||||||
raise Exception(
|
raise Exception(
|
||||||
f"No user found with matching id: {id}"
|
f"No user found with matching id: {id}"
|
||||||
)
|
)
|
||||||
|
|
||||||
return user.to_model()
|
return user_entity.to_model()
|
||||||
|
|
||||||
|
|
||||||
#get users
|
|
||||||
def all(self) -> list[User]:
|
def all(self) -> list[User]:
|
||||||
"""
|
"""
|
||||||
Returns a list of all Users
|
Returns a list of all Users
|
||||||
|
@ -44,7 +41,6 @@ class UserService:
|
||||||
return [entity.to_model() for entity in entities]
|
return [entity.to_model() for entity in entities]
|
||||||
|
|
||||||
|
|
||||||
#post user
|
|
||||||
def create(self, user: User) -> User:
|
def create(self, user: User) -> User:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
@ -55,18 +51,16 @@ class UserService:
|
||||||
Returns: User model
|
Returns: User model
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
|
user_entity = self.get_user_by_id(user.id)
|
||||||
|
except:
|
||||||
|
# if does not exist, create new object
|
||||||
|
user_entity = UserEntity.from_model(user)
|
||||||
|
|
||||||
#handle if id exists
|
# add new user to table
|
||||||
if user.id:
|
self._session.add(user_entity)
|
||||||
user.id = None
|
self._session.commit()
|
||||||
|
finally:
|
||||||
# if does not exist, create new object
|
# return added object
|
||||||
user_entity = UserEntity.from_model(user)
|
return user_entity.to_model()
|
||||||
|
|
||||||
# add new user to table
|
|
||||||
self._session.add(user_entity)
|
|
||||||
self._session.commit()
|
|
||||||
|
|
||||||
# return added object
|
|
||||||
return user_entity.to_model()
|
|
||||||
|
|
||||||
|
|
|
@ -4,10 +4,11 @@ import pytest
|
||||||
from sqlalchemy import Engine, create_engine, text
|
from sqlalchemy import Engine, create_engine, text
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
from sqlalchemy.exc import OperationalError
|
from sqlalchemy.exc import OperationalError
|
||||||
|
from .services import user_test_data, tag_test_data
|
||||||
|
|
||||||
from ...database import _engine_str
|
from ..database import _engine_str
|
||||||
from ...env import getenv
|
from ..env import getenv
|
||||||
from ... import entities
|
from .. import entities
|
||||||
|
|
||||||
POSTGRES_DATABASE = f'{getenv("POSTGRES_DATABASE")}_test'
|
POSTGRES_DATABASE = f'{getenv("POSTGRES_DATABASE")}_test'
|
||||||
POSTGRES_USER = getenv("POSTGRES_USER")
|
POSTGRES_USER = getenv("POSTGRES_USER")
|
||||||
|
@ -48,3 +49,10 @@ def session(test_engine: Engine):
|
||||||
yield session
|
yield session
|
||||||
finally:
|
finally:
|
||||||
session.close()
|
session.close()
|
||||||
|
|
||||||
|
@pytest.fixture(autouse=True)
|
||||||
|
def setup_insert_data_fixture(session: Session):
|
||||||
|
user_test_data.insert_fake_data(session)
|
||||||
|
tag_test_data.insert_fake_data(session)
|
||||||
|
session.commit()
|
||||||
|
yield
|
|
@ -1,19 +1,4 @@
|
||||||
""" Testing Tag Entity """
|
|
||||||
|
|
||||||
from sqlalchemy import Engine
|
|
||||||
from ... import entities
|
|
||||||
from ...entities.tag_entity import TagEntity
|
|
||||||
|
|
||||||
|
|
||||||
def test_add_sample_data_tag(session: Engine):
|
|
||||||
|
|
||||||
"""Inserts a sample data point and verifies it is in the database"""
|
|
||||||
entity = TagEntity(content="Test tag")
|
|
||||||
session.add(entity)
|
|
||||||
session.commit()
|
|
||||||
data = session.get(TagEntity, 1)
|
|
||||||
assert data.id == 1
|
|
||||||
assert data.content == "Test tag"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
""" Testing User Entity """
|
|
||||||
|
|
||||||
from sqlalchemy import Engine
|
|
||||||
from ... import entities
|
|
||||||
from ...entities.user_entity import UserEntity
|
|
||||||
from ...entities.user_entity import RoleEnum
|
|
||||||
from ...entities.user_entity import ProgramEnum
|
|
||||||
|
|
||||||
def test_add_sample_data_user(session: Engine):
|
|
||||||
|
|
||||||
|
|
||||||
"""Inserts a sample data point and verifies it is in the database"""
|
|
||||||
entity = UserEntity(id=1, username="emmalynf", role=RoleEnum.ADMIN, email="efoster@unc.edu", program=[ProgramEnum.COMMUNITY, ProgramEnum.DOMESTIC, ProgramEnum.ECONOMIC], experience=10, group="group")
|
|
||||||
session.add(entity)
|
|
||||||
session.commit()
|
|
||||||
data = session.get(UserEntity, 1)
|
|
||||||
assert data.id == 1
|
|
||||||
assert data.username == "emmalynf"
|
|
||||||
assert data.email == "efoster@unc.edu"
|
|
||||||
assert data.experience == 10
|
|
||||||
assert data.role == RoleEnum.ADMIN
|
|
||||||
assert data.program == [ProgramEnum.COMMUNITY, ProgramEnum.DOMESTIC, ProgramEnum.ECONOMIC]
|
|
||||||
|
|
||||||
|
|
0
backend/test/services/__init__.py
Normal file
0
backend/test/services/__init__.py
Normal file
20
backend/test/services/fixtures.py
Normal file
20
backend/test/services/fixtures.py
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
"""Fixtures used for testing the core services."""
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from unittest.mock import create_autospec
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from ...services import UserService
|
||||||
|
from ...services import TagService
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture()
|
||||||
|
def user_svc(session: Session):
|
||||||
|
"""This fixture is used to test the UserService class"""
|
||||||
|
return UserService(session)
|
||||||
|
|
||||||
|
@pytest.fixture()
|
||||||
|
def tag_svc(session: Session):
|
||||||
|
"""This fixture is used to test the TagService class"""
|
||||||
|
return TagService(session)
|
|
@ -0,0 +1,14 @@
|
||||||
|
"""Tests for the TagService class."""
|
||||||
|
|
||||||
|
# PyTest
|
||||||
|
import pytest
|
||||||
|
from ...services.tag import TagService
|
||||||
|
from .fixtures import tag_svc
|
||||||
|
from .tag_test_data import tag1, tag2, tag3
|
||||||
|
from . import tag_test_data
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_all(tag_svc: TagService):
|
||||||
|
"""Test that all tags can be retrieved."""
|
||||||
|
tags = tag_svc.all()
|
||||||
|
assert len(tags) == 3
|
72
backend/test/services/tag_test_data.py
Normal file
72
backend/test/services/tag_test_data.py
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
import pytest
|
||||||
|
from sqlalchemy.orm import Session
|
||||||
|
from ...models.tag_model import Tag
|
||||||
|
|
||||||
|
from ...entities.tag_entity import TagEntity
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
tag1 = Tag(id=1, content="Tag 1", created_at=datetime.now())
|
||||||
|
|
||||||
|
tag2 = Tag(id=2, content="Tag 2", created_at=datetime.now())
|
||||||
|
|
||||||
|
tag3 = Tag(id=3, content="Tag 3", created_at=datetime.now())
|
||||||
|
|
||||||
|
tagToCreate = Tag(id=4, content="Tag 4", created_at=datetime.now())
|
||||||
|
|
||||||
|
tags = [tag1, tag2, tag3]
|
||||||
|
|
||||||
|
|
||||||
|
from sqlalchemy import text
|
||||||
|
from sqlalchemy.orm import Session, DeclarativeBase, InstrumentedAttribute
|
||||||
|
|
||||||
|
|
||||||
|
def reset_table_id_seq(
|
||||||
|
session: Session,
|
||||||
|
entity: type[DeclarativeBase],
|
||||||
|
entity_id_column: InstrumentedAttribute[int],
|
||||||
|
next_id: int,
|
||||||
|
) -> None:
|
||||||
|
"""Reset the ID sequence of an entity table.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
session (Session) - A SQLAlchemy Session
|
||||||
|
entity (DeclarativeBase) - The SQLAlchemy Entity table to target
|
||||||
|
entity_id_column (MappedColumn) - The ID column (should be an int column)
|
||||||
|
next_id (int) - Where the next inserted, autogenerated ID should begin
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
None"""
|
||||||
|
table = entity.__table__
|
||||||
|
id_column_name = entity_id_column.name
|
||||||
|
sql = text(f"ALTER SEQUENCe {table}_{id_column_name}_seq RESTART WITH {next_id}")
|
||||||
|
session.execute(sql)
|
||||||
|
|
||||||
|
|
||||||
|
def insert_fake_data(session: Session):
|
||||||
|
"""Inserts fake organization data into the test session."""
|
||||||
|
|
||||||
|
global tags
|
||||||
|
|
||||||
|
# Create entities for test organization data
|
||||||
|
entities = []
|
||||||
|
for tag in tags:
|
||||||
|
entity = TagEntity.from_model(tag)
|
||||||
|
session.add(entity)
|
||||||
|
entities.append(entity)
|
||||||
|
|
||||||
|
# Reset table IDs to prevent ID conflicts
|
||||||
|
reset_table_id_seq(session, TagEntity, TagEntity.id, len(tags) + 1)
|
||||||
|
|
||||||
|
# Commit all changes
|
||||||
|
session.commit()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(autouse=True)
|
||||||
|
def fake_data_fixture(session: Session):
|
||||||
|
"""Insert fake data the session automatically when test is run.
|
||||||
|
Note:
|
||||||
|
This function runs automatically due to the fixture property `autouse=True`.
|
||||||
|
"""
|
||||||
|
insert_fake_data(session)
|
||||||
|
session.commit()
|
||||||
|
yield
|
|
@ -3,53 +3,45 @@
|
||||||
# PyTest
|
# PyTest
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from ...models.user_model import User
|
|
||||||
from ...services import UserService
|
from ...services import UserService
|
||||||
|
from .fixtures import user_svc
|
||||||
|
from ...models.enum_for_models import ProgramTypeEnum
|
||||||
|
|
||||||
from ...models.user_model import User
|
from .user_test_data import employee, volunteer, admin, newUser
|
||||||
from ...entities.program_enum import ProgramEnum
|
from . import user_test_data
|
||||||
from ...entities.user_enum import RoleEnum
|
|
||||||
from ...entities.user_entity import UserEntity
|
|
||||||
|
|
||||||
|
|
||||||
programs = ProgramEnum
|
def test_create(user_svc: UserService):
|
||||||
roles = RoleEnum
|
"""Test creating a user"""
|
||||||
|
user1 = user_svc.create(newUser)
|
||||||
|
assert user1 is not None
|
||||||
|
assert user1.id is not None
|
||||||
|
|
||||||
volunteer = User(
|
def test_create_id_exists(user_svc: UserService):
|
||||||
id = 1,
|
"""Test creating a user with id conflict"""
|
||||||
username="volunteer",
|
user1 = user_svc.create(volunteer)
|
||||||
email="volunteer@compass.com",
|
assert user1 is not None
|
||||||
experience="1 year",
|
assert user1.id is not None
|
||||||
group="volunteers",
|
|
||||||
programtype=[programs.ECONOMIC],
|
|
||||||
usertype=roles.VOLUNTEER,
|
|
||||||
)
|
|
||||||
|
|
||||||
employee = User(
|
|
||||||
id = 2,
|
|
||||||
username="employee",
|
|
||||||
email="employee@compass.com",
|
|
||||||
experience="5 years",
|
|
||||||
group="employees",
|
|
||||||
programtype=[programs.DOMESTIC, programs.COMMUNITY],
|
|
||||||
usertype=roles.EMPLOYEE,
|
|
||||||
)
|
|
||||||
|
|
||||||
admin = User(
|
|
||||||
id = 3,
|
|
||||||
username="admin",
|
|
||||||
email="admin@compass.com",
|
|
||||||
experience="10 years",
|
|
||||||
group="admin",
|
|
||||||
programtype=[programs.DOMESTIC, programs.COMMUNITY, programs.ECONOMIC],
|
|
||||||
usertype=roles.ADMIN,
|
|
||||||
)
|
|
||||||
|
|
||||||
users=[volunteer, employee, admin]
|
|
||||||
|
|
||||||
|
|
||||||
def test_get_all():
|
def test_get_all(user_svc: UserService):
|
||||||
"""Test that all users can be retrieved."""
|
"""Test that all users can be retrieved."""
|
||||||
|
users = user_svc.all()
|
||||||
|
assert len(users) == 3
|
||||||
|
|
||||||
|
def test_get_user_by_id(user_svc: UserService):
|
||||||
|
"""Test getting a user by an id"""
|
||||||
|
user = user_svc.get_user_by_id(volunteer.id)
|
||||||
|
assert user is not None
|
||||||
|
assert user.id is not None
|
||||||
|
|
||||||
|
def test_get_user_by_id_nonexistent(user_svc: UserService):
|
||||||
|
"""Test getting a user by id that does not exist"""
|
||||||
|
with pytest.raises(Exception):
|
||||||
|
user_svc.get_by_id(5)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,47 +1,61 @@
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
from ...models.user_model import User
|
from ...models.user_model import User
|
||||||
from ...entities.program_enum import ProgramEnum
|
|
||||||
from ...entities.user_enum import RoleEnum
|
# import model enums instead
|
||||||
|
from ...models.enum_for_models import UserTypeEnum, ProgramTypeEnum
|
||||||
from ...entities.user_entity import UserEntity
|
from ...entities.user_entity import UserEntity
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
programs = ProgramEnum
|
programs = ProgramTypeEnum
|
||||||
roles = RoleEnum
|
roles = UserTypeEnum
|
||||||
|
|
||||||
volunteer = User(
|
volunteer = User(
|
||||||
id = 1,
|
id=1,
|
||||||
username="volunteer",
|
username="volunteer",
|
||||||
email="volunteer@compass.com",
|
email="volunteer@compass.com",
|
||||||
experience="1 year",
|
experience=1,
|
||||||
group="volunteers",
|
group="volunteers",
|
||||||
programtype=[programs.ECONOMIC],
|
programtype=[programs.COMMUNITY.value],
|
||||||
usertype=roles.VOLUNTEER,
|
created_at=datetime.now(),
|
||||||
|
usertype=UserTypeEnum.VOLUNTEER.value
|
||||||
)
|
)
|
||||||
|
|
||||||
employee = User(
|
employee = User(
|
||||||
id = 2,
|
id=2,
|
||||||
username="employee",
|
username="employee",
|
||||||
email="employee@compass.com",
|
email="employee@compass.com",
|
||||||
experience="5 years",
|
experience=5,
|
||||||
group="employees",
|
group="employees",
|
||||||
programtype=[programs.DOMESTIC, programs.COMMUNITY],
|
programtype=[programs.DOMESTIC.value, programs.ECONOMIC.value],
|
||||||
usertype=roles.EMPLOYEE,
|
created_at=datetime.now(),
|
||||||
|
usertype=roles.EMPLOYEE.value,
|
||||||
)
|
)
|
||||||
|
|
||||||
admin = User(
|
admin = User(
|
||||||
id = 3,
|
id=3,
|
||||||
username="admin",
|
username="admin",
|
||||||
email="admin@compass.com",
|
email="admin@compass.com",
|
||||||
experience="10 years",
|
experience=10,
|
||||||
group="admin",
|
group="admin",
|
||||||
programtype=[programs.DOMESTIC, programs.COMMUNITY, programs.ECONOMIC],
|
programtype=[programs.ECONOMIC.value, programs.DOMESTIC.value, programs.COMMUNITY.value],
|
||||||
usertype=roles.ADMIN,
|
created_at=datetime.now(),
|
||||||
|
usertype=roles.ADMIN.value,
|
||||||
)
|
)
|
||||||
|
|
||||||
users=[volunteer, employee, admin]
|
newUser = User(
|
||||||
|
id=4,
|
||||||
|
username="new",
|
||||||
|
email="new@compass.com",
|
||||||
|
experience=1,
|
||||||
|
group="volunteer",
|
||||||
|
programtype=[programs.ECONOMIC.value],
|
||||||
|
created_at=datetime.now(),
|
||||||
|
usertype=roles.VOLUNTEER.value
|
||||||
|
)
|
||||||
|
|
||||||
|
users = [volunteer, employee, admin]
|
||||||
|
|
||||||
|
|
||||||
from sqlalchemy import text
|
from sqlalchemy import text
|
||||||
|
@ -83,9 +97,7 @@ def insert_fake_data(session: Session):
|
||||||
entities.append(entity)
|
entities.append(entity)
|
||||||
|
|
||||||
# Reset table IDs to prevent ID conflicts
|
# Reset table IDs to prevent ID conflicts
|
||||||
reset_table_id_seq(
|
reset_table_id_seq(session, UserEntity, UserEntity.id, len(users) + 1)
|
||||||
session, UserEntity, UserEntity.id, len(users) + 1
|
|
||||||
)
|
|
||||||
|
|
||||||
# Commit all changes
|
# Commit all changes
|
||||||
session.commit()
|
session.commit()
|
||||||
|
@ -99,4 +111,4 @@ def fake_data_fixture(session: Session):
|
||||||
"""
|
"""
|
||||||
insert_fake_data(session)
|
insert_fake_data(session)
|
||||||
session.commit()
|
session.commit()
|
||||||
yield
|
yield
|
||||||
|
|
Loading…
Reference in New Issue
Block a user