-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '3.0' into resource-pools
- Loading branch information
Showing
3 changed files
with
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# | ||
# Software Name : GNS3 server | ||
# Version: 3 | ||
# SPDX-FileCopyrightText: Copyright (c) 2023 Orange Business Services | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
# | ||
# This software is distributed under the GPL-3.0 or any later version, | ||
# the text of which is available at https://www.gnu.org/licenses/gpl-3.0.txt | ||
# or see the "LICENSE" file for more details. | ||
# | ||
# Author: Sylvain MATHIEU | ||
# | ||
|
||
""" | ||
API route for privileges | ||
""" | ||
|
||
from typing import List | ||
from gns3server.db.repositories.rbac import RbacRepository | ||
from .dependencies.database import get_repository | ||
from fastapi import APIRouter, Depends | ||
import logging | ||
|
||
from gns3server import schemas | ||
|
||
log = logging.getLogger(__name__) | ||
router = APIRouter() | ||
|
||
|
||
@router.get( | ||
"", | ||
response_model=List[schemas.Privilege], | ||
) | ||
async def get_privileges( | ||
rbac_repo: RbacRepository = Depends(get_repository(RbacRepository)) | ||
) -> List[schemas.Privilege]: | ||
""" | ||
Get all privileges. | ||
Required privilege: None | ||
""" | ||
|
||
return await rbac_repo.get_privileges() |
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,25 @@ | ||
# | ||
# Software Name : GNS3 server | ||
# Version: 3 | ||
# SPDX-FileCopyrightText: Copyright (c) 2023 Orange Business Services | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
# | ||
# This software is distributed under the GPL-3.0 or any later version, | ||
# the text of which is available at https://www.gnu.org/licenses/gpl-3.0.txt | ||
# or see the "LICENSE" file for more details. | ||
# | ||
# Author: Sylvain MATHIEU | ||
# | ||
|
||
import pytest | ||
from fastapi import FastAPI, status | ||
from httpx import AsyncClient | ||
|
||
pytestmark = pytest.mark.asyncio | ||
|
||
|
||
class TestPrivilegesRoute: | ||
|
||
async def test_get_privileges(self, app: FastAPI, client: AsyncClient) -> None: | ||
response = await client.get(app.url_path_for("get_privileges")) | ||
assert response.status_code == status.HTTP_200_OK |