mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-21 20:44:18 +00:00
Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
396311aefd
8 changed files with 170 additions and 81 deletions
|
@ -3,58 +3,101 @@ from flask.testing import Client
|
|||
'''A file that contains tests of classes and methods for all the requests concerning an user.'''
|
||||
|
||||
|
||||
class TestRepositoryGetAll:
|
||||
def test_get_all_user_repositories(self, flask_client: Client, user_headers):
|
||||
r = flask_client.get(f'/api/v1/repositories/', headers=user_headers,
|
||||
json={'owner_id': 'utente_test@nest.com', 'isActive': False})
|
||||
assert r.json["result"] == "success"
|
||||
# assert r.json["data"]["owner"] == "utente_test@nest.com"
|
||||
# assert r.json["data"]["isAdmin"] is not True
|
||||
|
||||
def test_get_all_admin_repositories(self, flask_client: Client, admin_headers):
|
||||
r = flask_client.get(f'/api/v1/repositories/', headers=admin_headers,
|
||||
json={'owner_id': 'admin@admin.com', 'isActive': False})
|
||||
assert r.json["result"] == "success"
|
||||
# assert r.json["data"]["owner"] == "admin@admin.com"
|
||||
# assert r.json["data"]["isAdmin"] is True
|
||||
|
||||
|
||||
|
||||
class TestRepositoryAdd:
|
||||
def test_for_success(self, flask_client: Client, user_headers):
|
||||
r = flask_client.post(f'/api/v1/repositories/', headers=user_headers, json={
|
||||
'conditions': [
|
||||
{
|
||||
'content': 'PdS2021',
|
||||
'id': 0,
|
||||
'type': 0
|
||||
'content': 'PdS2021',
|
||||
'id': 0,
|
||||
'type': 0
|
||||
}
|
||||
],
|
||||
'evaluation_mode': 0,
|
||||
'name': 'repo_test',
|
||||
'is_active': True
|
||||
})
|
||||
assert r.status_code == 200
|
||||
assert r.json["result"] == "success"
|
||||
assert r.json["data"]["is_active"] is True
|
||||
|
||||
|
||||
# non vengono passate le condizioni necessarie, in questo caso il nome della repository
|
||||
def test_for_failure(self, flask_client: Client, user_headers):
|
||||
def test_no_name(self, flask_client: Client, user_headers):
|
||||
r = flask_client.post(f'/api/v1/repositories/', headers=user_headers, json={
|
||||
'conditions': [
|
||||
{
|
||||
'content': 'PdS2021',
|
||||
'id': 0,
|
||||
'type': 0
|
||||
'content': 'PdS2021',
|
||||
'id': 0,
|
||||
'type': 0
|
||||
}
|
||||
],
|
||||
'evaluation_mode': 0,
|
||||
|
||||
'is_active': True
|
||||
})
|
||||
assert r.status_code == 400
|
||||
assert r.json["msg"] == "Missing arguments."
|
||||
assert r.json["result"] == "failure"
|
||||
|
||||
|
||||
# viene passato un campo evaluation_mode con valore non previsto dall'enum
|
||||
def test_wrong_evaluation_mode(self, flask_client: Client, user_headers):
|
||||
r = flask_client.post(f'/api/v1/repositories/', headers=user_headers, json={
|
||||
'conditions': [
|
||||
{
|
||||
'content': 'PdS2021',
|
||||
'id': 0,
|
||||
'type': 0
|
||||
}
|
||||
],
|
||||
'evaluation_mode': 99,
|
||||
'name': 'repo_test',
|
||||
'is_active': True
|
||||
})
|
||||
assert r.status_code == 400
|
||||
assert r.json["result"] == "failure"
|
||||
|
||||
# viene passato un campo type con valore non previsto dall'enum
|
||||
def test_wrong_condition(self, flask_client: Client, user_headers):
|
||||
r = flask_client.post(f'/api/v1/repositories/', headers=user_headers, json={
|
||||
'conditions': [
|
||||
{
|
||||
'content': 'PdS2021',
|
||||
'id': 0,
|
||||
'type': 99
|
||||
}
|
||||
],
|
||||
'evaluation_mode': 2,
|
||||
'name': 'repo_test',
|
||||
'is_active': True
|
||||
})
|
||||
assert r.status_code == 400
|
||||
assert r.json["result"] == "failure"
|
||||
|
||||
|
||||
class TestRepositoryGetAll:
|
||||
def test_get_all_user_repositories(self, flask_client: Client, user_headers):
|
||||
r = flask_client.get(f'/api/v1/repositories/', headers=user_headers,
|
||||
json={'owner_id': 'utente_test@nest.com', 'isActive': False})
|
||||
assert r.status_code == 200
|
||||
assert r.json["result"] == "success"
|
||||
|
||||
def test_get_all_admin_repositories(self, flask_client: Client, admin_headers):
|
||||
r = flask_client.get(f'/api/v1/repositories/', headers=admin_headers,
|
||||
json={'owner_id': 'admin@admin.com', 'isActive': False})
|
||||
assert r.status_code == 200
|
||||
assert r.json["result"] == "success"
|
||||
|
||||
|
||||
class TestRepositoryGet:
|
||||
def test_get_existing_repository(self, flask_client: Client, user_headers):
|
||||
r = flask_client.get(f'/api/v1/repositories/1', headers=user_headers)
|
||||
assert r.status_code == 200
|
||||
assert r.json["result"] == "success"
|
||||
|
||||
def test_get_non_existing_repository(self, flask_client: Client, admin_headers):
|
||||
r = flask_client.get(f'/api/v1/repositories/99', headers=admin_headers)
|
||||
assert r.status_code == 404
|
||||
assert r.json["result"] == "failure"
|
||||
|
||||
|
||||
'''
|
||||
class TestUserDelete:
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import React from "react"
|
||||
import Layout from "./components/interactive/Layout"
|
||||
import { BrowserRouter } from "react-router-dom"
|
||||
import GlobalTheme from "./components/providers/GlobalTheme"
|
||||
|
|
|
@ -3,41 +3,50 @@ import BoxFull from "../base/BoxFull"
|
|||
import SummaryRepository from "./SummaryRepository"
|
||||
import { faFolderOpen } from "@fortawesome/free-solid-svg-icons"
|
||||
import ContextUser from "../../contexts/ContextUser"
|
||||
import Loading from "../base/Loading"
|
||||
import BoxFullScrollable from "../base/BoxFullScrollable"
|
||||
|
||||
|
||||
/**
|
||||
* A {@link BoxFull} listing all the user's active repositories.
|
||||
*
|
||||
* @param repositories - Array of repositories to display in the box.
|
||||
* @param refresh - Function that can be called to refresh the repositories list.
|
||||
* @param archiveRepository - Function to be called when archive is pressed on a repository summary.
|
||||
* @param destroyRepository - Function to be called when delete is pressed on a repository summary.
|
||||
* @param running - If an action is currently running.
|
||||
* @param props - Additional props to pass to the box.
|
||||
* @returns {JSX.Element}
|
||||
* @constructor
|
||||
*/
|
||||
export default function BoxRepositoriesActive({ repositories, refresh, ...props }) {
|
||||
export default function BoxRepositoriesActive({ repositories, archiveRepository, destroyRepository, running, ...props }) {
|
||||
const { user } = useContext(ContextUser)
|
||||
|
||||
let contents
|
||||
if(repositories.length > 0) {
|
||||
if(repositories === null) {
|
||||
contents = <Loading/>
|
||||
}
|
||||
else if(repositories.length === 0) {
|
||||
contents = <i>There's nothing here.</i>
|
||||
}
|
||||
else {
|
||||
contents = repositories.map(repo => (
|
||||
<SummaryRepository
|
||||
key={repo["id"]}
|
||||
repo={repo}
|
||||
icon={faFolderOpen}
|
||||
refresh={refresh}
|
||||
archiveSelf={() => archiveRepository(repo["id"])}
|
||||
deleteSelf={() => destroyRepository(repo["id"])}
|
||||
canArchive={true}
|
||||
canEdit={true}
|
||||
canDelete={repo["owner"]["username"] === user["username"]}
|
||||
running={running}
|
||||
/>
|
||||
))
|
||||
}
|
||||
else {
|
||||
contents = <i>There's nothing here.</i>
|
||||
}
|
||||
|
||||
return (
|
||||
<BoxFull header={"Your active repositories"} {...props}>
|
||||
<BoxFullScrollable header={"Your active repositories"} {...props}>
|
||||
{contents}
|
||||
</BoxFull>
|
||||
</BoxFullScrollable>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,43 +1,52 @@
|
|||
import React, { useContext } from "react"
|
||||
import BoxFull from "../base/BoxFull"
|
||||
import ContextUser from "../../contexts/ContextUser"
|
||||
import SummaryRepository from "./SummaryRepository"
|
||||
import { faFolder } from "@fortawesome/free-solid-svg-icons"
|
||||
import { faFolderOpen } from "@fortawesome/free-solid-svg-icons"
|
||||
import ContextUser from "../../contexts/ContextUser"
|
||||
import Loading from "../base/Loading"
|
||||
import BoxFullScrollable from "../base/BoxFullScrollable"
|
||||
|
||||
|
||||
/**
|
||||
* A {@link BoxFull} listing all the user's archived repositories.
|
||||
*
|
||||
* @param repositories - Array of repositories to display in the box.
|
||||
* @param refresh - Function that can be called to refresh the repositories list.
|
||||
* @param archiveRepository - Function to be called when archive is pressed on a repository summary.
|
||||
* @param destroyRepository - Function to be called when delete is pressed on a repository summary.
|
||||
* @param running - If an action is currently running.
|
||||
* @param props - Additional props to pass to the box.
|
||||
* @returns {JSX.Element}
|
||||
* @constructor
|
||||
*/
|
||||
export default function BoxRepositoriesArchived({ repositories, refresh, ...props }) {
|
||||
export default function BoxRepositoriesArchived({ repositories, archiveRepository, destroyRepository, running, ...props }) {
|
||||
const { user } = useContext(ContextUser)
|
||||
|
||||
let contents
|
||||
if(repositories.length > 0) {
|
||||
if(repositories === null) {
|
||||
contents = <Loading/>
|
||||
}
|
||||
else if(repositories.length === 0) {
|
||||
contents = <i>There's nothing here.</i>
|
||||
}
|
||||
else {
|
||||
contents = repositories.map(repo => (
|
||||
<SummaryRepository
|
||||
key={repo["id"]}
|
||||
repo={repo}
|
||||
icon={faFolder}
|
||||
refresh={refresh}
|
||||
icon={faFolderOpen}
|
||||
archiveSelf={() => archiveRepository(repo["id"])}
|
||||
deleteSelf={() => destroyRepository(repo["id"])}
|
||||
canArchive={false}
|
||||
canEdit={false}
|
||||
canDelete={repo["owner"]["username"] === user["username"]}
|
||||
running={running}
|
||||
/>
|
||||
))
|
||||
}
|
||||
else {
|
||||
contents = <i>There's nothing here.</i>
|
||||
}
|
||||
|
||||
return (
|
||||
<BoxFull header={"Your archived repositories"} {...props}>
|
||||
<BoxFullScrollable header={"Your active repositories"} {...props}>
|
||||
{contents}
|
||||
</BoxFull>
|
||||
</BoxFullScrollable>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -13,20 +13,20 @@ import Summary from "../base/Summary"
|
|||
* @param repo - The repository object.
|
||||
* @param refresh - Function that can be called to refresh the repositories list.
|
||||
* @param canDelete - If the Delete button should be displayed or not.
|
||||
* @param deleteSelf - Function to call when the Delete button is pressed.
|
||||
* @param canEdit - If the Edit button should be displayed or not.
|
||||
* @param canArchive - If the Archive button should be displayed or not.
|
||||
* @param archiveSelf - Function to call when the Archive button is pressed.
|
||||
* @param running - If an action is currently running.
|
||||
* @param className - Additional class(es) to be added to the outer box.
|
||||
* @param props - Additional props to pass to the outer box.
|
||||
* @returns {JSX.Element}
|
||||
* @constructor
|
||||
*/
|
||||
export default function SummaryRepository(
|
||||
{ repo, refresh, canDelete, canEdit, canArchive, className, ...props },
|
||||
{ repo, refresh, canDelete, deleteSelf, canEdit, canArchive, archiveSelf, running, className, ...props },
|
||||
) {
|
||||
const { fetchDataAuth } = useContext(ContextUser)
|
||||
const history = useHistory()
|
||||
const { fetchNow: archiveThis } = useBackend(fetchDataAuth, "PATCH", `/api/v1/repositories/${repo.id}`, { "close": true })
|
||||
const { fetchNow: deletThis } = useBackend(fetchDataAuth, "DELETE", `/api/v1/repositories/${repo.id}`)
|
||||
|
||||
const onRepoClick = () => {
|
||||
history.push(`/repositories/${repo.id}`)
|
||||
|
@ -36,22 +36,13 @@ export default function SummaryRepository(
|
|||
history.push(`/repositories/${repo.id}/edit`)
|
||||
}
|
||||
|
||||
const onArchiveClick = async () => {
|
||||
await archiveThis()
|
||||
await refresh()
|
||||
}
|
||||
|
||||
const onDeleteClick = async () => {
|
||||
await deletThis()
|
||||
await refresh()
|
||||
}
|
||||
|
||||
const buttons = <>
|
||||
{canDelete ?
|
||||
<Button
|
||||
color={"Red"}
|
||||
icon={faTrash}
|
||||
onClick={onDeleteClick}
|
||||
onClick={deleteSelf}
|
||||
disabled={running}
|
||||
>
|
||||
Delete
|
||||
</Button>
|
||||
|
@ -61,6 +52,7 @@ export default function SummaryRepository(
|
|||
color={"Yellow"}
|
||||
icon={faPencilAlt}
|
||||
onClick={onEditClick}
|
||||
disabled={running}
|
||||
>
|
||||
Edit
|
||||
</Button>
|
||||
|
@ -69,7 +61,8 @@ export default function SummaryRepository(
|
|||
<Button
|
||||
color={"Grey"}
|
||||
icon={faArchive}
|
||||
onClick={onArchiveClick}
|
||||
onClick={archiveSelf}
|
||||
disabled={running}
|
||||
>
|
||||
{"Archive"}
|
||||
</Button>
|
||||
|
|
|
@ -127,6 +127,25 @@ export default function useBackendViewset(resourcesPath, pkName) {
|
|||
[apiList],
|
||||
)
|
||||
|
||||
const refreshResource = useCallback(
|
||||
async (pk) => {
|
||||
try {
|
||||
const refreshedResource = await apiRetrieve(pk)
|
||||
setResources(resources => resources.map(resource => {
|
||||
if(resource[pkName] === pk) {
|
||||
return refreshedResource
|
||||
}
|
||||
return resource
|
||||
}))
|
||||
}
|
||||
catch(e) {
|
||||
return { error: e }
|
||||
}
|
||||
return {}
|
||||
},
|
||||
[apiRetrieve, pkName]
|
||||
)
|
||||
|
||||
const createResource = useCallback(
|
||||
async (data) => {
|
||||
try {
|
||||
|
@ -191,12 +210,14 @@ export default function useBackendViewset(resourcesPath, pkName) {
|
|||
resources,
|
||||
running,
|
||||
loaded,
|
||||
apiRequest,
|
||||
apiList,
|
||||
apiRetrieve,
|
||||
apiCreate,
|
||||
apiEdit,
|
||||
apiDestroy,
|
||||
refreshResources,
|
||||
refreshResource,
|
||||
createResource,
|
||||
editResource,
|
||||
destroyResource,
|
||||
|
|
|
@ -1,32 +1,44 @@
|
|||
import React, { useContext } from "react"
|
||||
import React, { useCallback, useContext } from "react"
|
||||
import Style from "./PageRepositories.module.css"
|
||||
import classNames from "classnames"
|
||||
import BoxRepositoriesActive from "../components/interactive/BoxRepositoriesActive"
|
||||
import BoxRepositoriesArchived from "../components/interactive/BoxRepositoriesArchived"
|
||||
import useBackendImmediately from "../hooks/useBackendImmediately"
|
||||
import ContextUser from "../contexts/ContextUser"
|
||||
import renderContents from "../utils/renderContents"
|
||||
import useBackendViewset from "../hooks/useBackendViewset"
|
||||
|
||||
|
||||
export default function PageRepositories({ children, className, ...props }) {
|
||||
const { fetchDataAuth } = useContext(ContextUser)
|
||||
const repositoryRequest = useBackendImmediately(fetchDataAuth, "GET", "/api/v1/repositories/")
|
||||
const contents = renderContents(
|
||||
repositoryRequest,
|
||||
data => {
|
||||
const repositories = [...data["owner"], ...data["spectator"]]
|
||||
const active = repositories.filter(r => r.is_active)
|
||||
const archived = repositories.filter(r => !r.is_active)
|
||||
return <>
|
||||
<BoxRepositoriesActive repositories={active} refresh={repositoryRequest.fetchNow}/>
|
||||
<BoxRepositoriesArchived repositories={archived} refresh={repositoryRequest.fetchNow}/>
|
||||
</>
|
||||
const bv = useBackendViewset("/api/v1/repositories/", "id")
|
||||
|
||||
const archiveRepository = useCallback(
|
||||
async (pk) => {
|
||||
try {
|
||||
await bv.apiRequest("PATCH", `/api/v1/repositories/${pk}`, {
|
||||
"close": true,
|
||||
})
|
||||
await bv.refreshResource(pk)
|
||||
}
|
||||
catch(e) {
|
||||
return { error: e }
|
||||
}
|
||||
return {}
|
||||
},
|
||||
[bv.apiRequest, bv.refreshResource]
|
||||
)
|
||||
|
||||
return (
|
||||
<div className={classNames(Style.PageRepositories, className)} {...props}>
|
||||
{contents}
|
||||
<BoxRepositoriesActive
|
||||
repositories={bv.loaded ? bv.resources.filter(r => r.is_active) : null}
|
||||
archiveRepository={archiveRepository}
|
||||
destroyRepository={bv.destroyResource}
|
||||
running={bv.running}
|
||||
/>
|
||||
<BoxRepositoriesArchived
|
||||
repositories={bv.loaded ? bv.resources.filter(r => !r.is_active) : null}
|
||||
archiveRepository={archiveRepository}
|
||||
destroyRepository={bv.destroyResource}
|
||||
running={bv.running}
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import React from "react"
|
||||
import Loading from "../components/base/Loading"
|
||||
import BoxAlert from "../components/base/BoxAlert"
|
||||
import Starting from "../components/base/Starting"
|
||||
|
|
Loading…
Reference in a new issue