-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add endpoint for returning RHEL systems start/end dates
- Loading branch information
Showing
10 changed files
with
128 additions
and
0 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
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
Empty file.
Empty file.
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,43 @@ | ||
import pytest | ||
from fastapi.testclient import TestClient | ||
|
||
from app.main import app | ||
|
||
client = TestClient(app) | ||
|
||
|
||
@pytest.mark.parametrize( | ||
("path", "response"), | ||
( | ||
( | ||
"/8/3", | ||
[ | ||
{ | ||
"name": "RHEL", | ||
"major": 8, | ||
"minor": 3, | ||
"release_date": "2020-11-01", | ||
"retirement_date": "2021-05-01", | ||
"systems": 50, | ||
} | ||
], | ||
), | ||
( | ||
"/9/0", | ||
[ | ||
{ | ||
"name": "RHEL", | ||
"major": 9, | ||
"minor": 0, | ||
"release_date": "2022-05-18", | ||
"retirement_date": "2032-05-01", | ||
"systems": 45, | ||
} | ||
], | ||
), | ||
("/9/20", []), | ||
), | ||
) | ||
def test_system_specified(path, response): | ||
data = client.get(f"/api/digital-roadmap/v1/lifecycle/systems{path}") | ||
assert data.json() == response |
Empty file.
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,7 @@ | ||
from fastapi import APIRouter | ||
|
||
from app.v1.lifecycle.systems.endpoints import v1_router as systems_v1_router | ||
|
||
v1_router = APIRouter() | ||
|
||
v1_router.include_router(systems_v1_router, tags=["lifecycle"]) |
Empty file.
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,71 @@ | ||
from datetime import date | ||
|
||
from fastapi import APIRouter | ||
|
||
v1_router = APIRouter() | ||
|
||
OS_DATA_MOCKED = [ | ||
{ | ||
"name": "RHEL", | ||
"major": 9, | ||
"minor": 2, | ||
"release_date": date(2023, 5, 1), | ||
"retirement_date": date(2023, 11, 1), | ||
"systems": 5, | ||
}, | ||
{ | ||
"name": "RHEL", | ||
"major": 8, | ||
"minor": 3, | ||
"release_date": date(2020, 11, 1), | ||
"retirement_date": date(2021, 5, 1), | ||
"systems": 50, | ||
}, | ||
{ | ||
"name": "RHEL", | ||
"major": 8, | ||
"minor": 7, | ||
"release_date": date(2023, 5, 1), | ||
"retirement_date": date(2023, 5, 1), | ||
"systems": 12, | ||
}, | ||
{ | ||
"name": "RHEL", | ||
"major": 9, | ||
"minor": 0, | ||
"release_date": date(2022, 5, 18), | ||
"retirement_date": date(2032, 5, 1), | ||
"systems": 45, | ||
}, | ||
] | ||
|
||
|
||
@v1_router.get("/systems") | ||
async def get_systems(): | ||
systems = get_systems_data() | ||
return systems | ||
|
||
|
||
@v1_router.get("/systems/{major}/{minor}") | ||
async def get_systems_filtered_minor(major: int, minor: int): | ||
systems = get_systems_data(major, minor) | ||
return systems | ||
|
||
|
||
@v1_router.get("/systems/{major}") | ||
async def get_systems_filtered_major(major: int): | ||
systems = get_systems_data(major) | ||
return systems | ||
|
||
|
||
def get_systems_data(major=None, minor=None): | ||
data = OS_DATA_MOCKED | ||
|
||
print(minor) | ||
|
||
if major is not None: | ||
data = [d for d in data if d["major"] == major] | ||
if minor is not None: | ||
data = [d for d in data if d["minor"] == minor] | ||
|
||
return data |