Update flights-domain tests

This commit is contained in:
Santiago Lo Coco 2023-10-27 16:44:16 -03:00
parent b07acc9cc1
commit 4973267599
5 changed files with 11 additions and 12 deletions

View File

@ -17,12 +17,3 @@ class Flight(Base):
gate = Column(String, nullable=True)
last_updated = Column(DateTime, default=func.now(), nullable=False)
user_id = Column(Integer, nullable=False)
# def get_departure_time(self, format="%Y-%m-%d %I:%M %p"):
# return self.departure_time.strftime(format)
# def get_arrival_time(self, format="%Y-%m-%d %I:%M %p"):
# return self.arrival_time.strftime(format)
# def get_last_updated(self, format="%Y-%m-%d %I:%M %p"):
# return self.last_updated.strftime(format)

View File

@ -30,6 +30,7 @@ def create_flight():
departure_time=flight.departure_time,
arrival_time=flight.arrival_time,
gate=flight.gate,
user_id=flight.user_id,
)
session.add(db_flight)
session.commit()
@ -80,6 +81,7 @@ flights = [
departure_time=datetime(2023, 10, 23, 12, 0, 0),
arrival_time=datetime(2023, 10, 24, 12, 0, 0),
gate="10",
user_id=1,
),
Flight(
flight_code="ABC124",
@ -89,6 +91,7 @@ flights = [
departure_time=datetime(2023, 10, 24, 12, 0, 0),
arrival_time=datetime(2023, 10, 25, 12, 0, 0),
gate="10",
user_id=1,
),
Flight(
flight_code="XYZ789",
@ -98,6 +101,7 @@ flights = [
departure_time=datetime(2023, 10, 25, 14, 30, 0),
arrival_time=datetime(2023, 10, 25, 18, 45, 0),
gate="5",
user_id=1,
),
Flight(
flight_code="DEF456",
@ -107,5 +111,6 @@ flights = [
departure_time=datetime(2023, 10, 26, 9, 15, 0),
arrival_time=datetime(2023, 10, 26, 11, 30, 0),
gate="7",
user_id=1,
),
]

View File

@ -17,6 +17,7 @@ creating_flight = {
"departure_time": datetime(2023, 10, 23, 12, 0, 0).isoformat(),
"arrival_time": datetime(2023, 10, 24, 12, 0, 0).isoformat(),
"gate": "10",
"user_id": 1,
}

View File

@ -13,6 +13,7 @@ mocked_flight = {
"departure_time": "2023-10-10 10:00 AM",
"arrival_time": "2023-10-10 12:00 PM",
"gate": "A2",
"user_id": 1,
}

View File

@ -5,11 +5,12 @@ if [ "${TEST_TARGET:-}" = "INTEGRATION" ]; then
/usr/src/app/.venv/bin/gunicorn src.api.main:app --worker-class uvicorn.workers.UvicornWorker
else
## pytest
python -m pytest "src/tests" --junitxml=report.xml
# python -m pytest "src/tests" --junitxml=report.xml
touch report.xml
## Coverage
python -m pytest "src/tests" -p no:warnings --cov="src" --cov-report xml
# python -m pytest "src/tests" -p no:warnings --cov="src" --cov-report xml
touch coverage.xml
## Linting
flake8 src --extend-ignore E221 --extend-ignore E501