-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into get-artefact-endpoint
- Loading branch information
Showing
6 changed files
with
113 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Copyright 2023 Canonical Ltd. | ||
# All rights reserved. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
|
@@ -10,10 +13,16 @@ | |
# Nadzeya Hutsko <[email protected]> | ||
# Omar Abou Selo <[email protected]> | ||
|
||
|
||
from itertools import groupby | ||
|
||
|
||
from fastapi import APIRouter, Depends, HTTPException | ||
from sqlalchemy.orm import Session | ||
from test_observer.data_access.models import Family | ||
from test_observer.data_access.models_enums import FamilyName | ||
from test_observer.data_access.setup import get_db | ||
from test_observer.data_access.repository import get_artefacts_by_family_name | ||
|
||
from .models import FamilyDTO | ||
|
||
|
@@ -27,5 +36,13 @@ def read_family(family_name: str, db: Session = Depends(get_db)): | |
if family is None: | ||
raise HTTPException(status_code=404, detail="Family not found") | ||
|
||
family_name_enum_value = FamilyName(family_name) | ||
latest_artefacts = get_artefacts_by_family_name(db, family_name_enum_value) | ||
|
||
stage_artefact_dict = groupby(latest_artefacts, lambda art: art.stage) | ||
|
||
for stage, artefacts in stage_artefact_dict: | ||
stage.artefacts = list(artefacts) | ||
|
||
family.stages = sorted(family.stages, key=lambda x: x.position) | ||
return family |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# Copyright 2023 Canonical Ltd. | ||
# All rights reserved. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
# Written by: | ||
# Nadzeya Hutsko <[email protected]> | ||
|
||
|
||
from datetime import datetime, timedelta | ||
from random import randint | ||
|
||
from fastapi.testclient import TestClient | ||
from sqlalchemy.orm import Session | ||
|
||
from tests.helpers import create_artefact | ||
|
||
|
||
def test_retreive_family(db_session: Session, test_client: TestClient): | ||
""" | ||
We should get json for a specific family with its stages and artefacts | ||
""" | ||
# Arrange | ||
artefact_name_stage_pair = [ | ||
("core20", "edge", datetime.utcnow()), | ||
("oem-jammy", "proposed", datetime.utcnow()), | ||
("core20", "edge", datetime.utcnow() - timedelta(days=10)), | ||
("core20", "beta", datetime.utcnow() - timedelta(days=20)), | ||
] | ||
artefacts = [] | ||
for name, stage, created_at in artefact_name_stage_pair: | ||
artefacts.append( | ||
create_artefact( | ||
db_session, | ||
stage, | ||
name=name, | ||
created_at=created_at, | ||
version=str(randint(1, 100)), | ||
) | ||
) | ||
snap_stage = artefacts[0].stage | ||
|
||
# Act | ||
response = test_client.get("/v1/families/snap") | ||
|
||
# Assert | ||
assert response.json() == { | ||
"id": snap_stage.family_id, | ||
"name": snap_stage.family.name, | ||
"stages": [ | ||
{ | ||
"id": 1, | ||
"name": "edge", | ||
"artefacts": [ | ||
{ | ||
"id": artefacts[0].id, | ||
"name": artefacts[0].name, | ||
"version": artefacts[0].version, | ||
"source": artefacts[0].source, | ||
} | ||
], | ||
}, | ||
{ | ||
"id": 2, | ||
"name": "beta", | ||
"artefacts": [ | ||
{ | ||
"id": artefacts[-1].id, | ||
"name": artefacts[-1].name, | ||
"version": artefacts[-1].version, | ||
"source": artefacts[-1].source, | ||
} | ||
], | ||
}, | ||
{"id": 3, "name": "candidate", "artefacts": []}, | ||
{"id": 4, "name": "stable", "artefacts": []}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters