test case page
This commit is contained in:
@@ -1,25 +1,30 @@
|
|||||||
const express = require("express");
|
const express = require("express");
|
||||||
const router = express.Router();
|
const router = express.Router();
|
||||||
const defineCase = require("../../models/cases");
|
const defineCase = require("../../models/cases");
|
||||||
const { DataTypes } = require('sequelize');
|
const { DataTypes } = require("sequelize");
|
||||||
|
|
||||||
module.exports = function(sequelize) {
|
module.exports = function (sequelize) {
|
||||||
const Run = defineCase(sequelize, DataTypes)
|
const Case = defineCase(sequelize, DataTypes);
|
||||||
|
|
||||||
router.get("/", async (req, res) => {
|
router.get("/", async (req, res) => {
|
||||||
const { folderId } = req.query;
|
const { caseId, folderId } = req.query;
|
||||||
|
|
||||||
if (!folderId) {
|
if (!caseId && !folderId) {
|
||||||
return res.status(400).json({ error: 'folderId is required' });
|
return res.status(400).json({ error: "caseId or folderId is required" });
|
||||||
|
}
|
||||||
|
|
||||||
|
if (caseId) {
|
||||||
|
const testcase = await Case.findByPk(caseId);
|
||||||
|
return res.json(testcase);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const runs = await Run.findAll({
|
const cases = await Case.findAll({
|
||||||
where: {
|
where: {
|
||||||
folderId: folderId
|
folderId: folderId,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
res.json(runs);
|
res.json(cases);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
res.status(500).send("Internal Server Error");
|
res.status(500).send("Internal Server Error");
|
||||||
|
|||||||
@@ -1,18 +1,110 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import { Button } from "@nextui-org/react";
|
import { useEffect, useState } from "react";
|
||||||
import { useRouter } from "next/navigation";
|
import { Select, SelectItem } from "@nextui-org/react";
|
||||||
|
import priorities from "../priorities";
|
||||||
|
import Config from "@/config/config";
|
||||||
|
const apiServer = Config.apiServer;
|
||||||
|
|
||||||
|
type CaseType = {
|
||||||
|
id: number;
|
||||||
|
title: string;
|
||||||
|
state: number;
|
||||||
|
priority: number;
|
||||||
|
type: number;
|
||||||
|
automationStatus: number;
|
||||||
|
description: string;
|
||||||
|
template: number;
|
||||||
|
preConditions: string;
|
||||||
|
expectedResults: string;
|
||||||
|
folderId: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
const defaultTestCase = {
|
||||||
|
id: 0,
|
||||||
|
title: "",
|
||||||
|
state: 0,
|
||||||
|
priority: 0,
|
||||||
|
type: 0,
|
||||||
|
automationStatus: 0,
|
||||||
|
description: "",
|
||||||
|
template: 0,
|
||||||
|
preConditions: "",
|
||||||
|
expectedResults: "",
|
||||||
|
folderId: 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* fetch case
|
||||||
|
*/
|
||||||
|
async function fetchCase(url: string) {
|
||||||
|
try {
|
||||||
|
const response = await fetch(url, {
|
||||||
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`HTTP error! Status: ${response.status}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
return data;
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Error fetching data:", error.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function Page({
|
||||||
|
params,
|
||||||
|
}: {
|
||||||
|
params: { projectId: string; folderId: string; caseId: string };
|
||||||
|
}) {
|
||||||
|
const [testCase, setTestCase] = useState<CaseType>(defaultTestCase);
|
||||||
|
|
||||||
|
const url = `${apiServer}/cases?caseId=${params.caseId}`;
|
||||||
|
useEffect(() => {
|
||||||
|
async function fetchDataEffect() {
|
||||||
|
try {
|
||||||
|
const data = await fetchCase(url);
|
||||||
|
setTestCase(data);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Error in effect:", error.message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fetchDataEffect();
|
||||||
|
}, []);
|
||||||
|
|
||||||
export default function Page({ params }: { params: { projectId: string, folderId: string } }) {
|
|
||||||
const router = useRouter();
|
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="p-5">
|
||||||
<Button
|
<h4 className="font-bold">{testCase.title}</h4>
|
||||||
className="ms-5 mt-3"
|
<Select
|
||||||
onClick={() => router.push(`/projects/${params.projectId}/folders/${params.folderId}/cases/`)}
|
selectedKeys={[priorities[testCase.priority].uid]}
|
||||||
|
onSelectionChange={(e) => {
|
||||||
|
const selectedUid = e.anchorKey;
|
||||||
|
const index = priorities.findIndex(
|
||||||
|
(priority) => priority.uid === selectedUid
|
||||||
|
);
|
||||||
|
setTestCase({ ...testCase, priority: index });
|
||||||
|
}}
|
||||||
|
label="Priority"
|
||||||
|
className="mt-3 max-w-xs"
|
||||||
>
|
>
|
||||||
Back
|
{priorities.map((priority, index) => (
|
||||||
</Button>
|
<SelectItem key={priority.uid} value={index}>
|
||||||
<div>This is each test case</div>
|
{priority.name}
|
||||||
</>
|
</SelectItem>
|
||||||
|
))}
|
||||||
|
</Select>
|
||||||
|
|
||||||
|
<div>type: {testCase.type}</div>
|
||||||
|
<div>automationStatus: {testCase.automationStatus}</div>
|
||||||
|
<div>description: {testCase.description}</div>
|
||||||
|
<div>template: {testCase.template}</div>
|
||||||
|
<div>preConditions: {testCase.preConditions}</div>
|
||||||
|
<div>expectedResults: {testCase.expectedResults}</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,6 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import Config from "@/config/config";
|
import Config from "@/config/config";
|
||||||
const apiServer = Config.apiServer;
|
const apiServer = Config.apiServer;
|
||||||
import { Listbox, ListboxItem } from "@nextui-org/react";
|
|
||||||
import { useRouter } from "next/navigation";
|
|
||||||
import TestCaseTable from "./test-case-table";
|
import TestCaseTable from "./test-case-table";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -38,7 +36,6 @@ export default function Page({
|
|||||||
}: {
|
}: {
|
||||||
params: { projectId: string; folderId: string };
|
params: { projectId: string; folderId: string };
|
||||||
}) {
|
}) {
|
||||||
const router = useRouter();
|
|
||||||
const [cases, setCases] = useState([]);
|
const [cases, setCases] = useState([]);
|
||||||
const url = `${apiServer}/cases?folderId=${params.folderId}`;
|
const url = `${apiServer}/cases?folderId=${params.folderId}`;
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
const priorities = [
|
||||||
|
{ name: "Critical", uid: "critical", color: "danger" },
|
||||||
|
{ name: "High", uid: "high", color: "warning" },
|
||||||
|
{ name: "Medium", uid: "medium", color: "primary" },
|
||||||
|
{ name: "Low", uid: "low", color: "success" },
|
||||||
|
];
|
||||||
|
|
||||||
|
export default priorities
|
||||||
@@ -18,19 +18,14 @@ import {
|
|||||||
} from "@nextui-org/react";
|
} from "@nextui-org/react";
|
||||||
import { MoreVertical } from "lucide-react";
|
import { MoreVertical } from "lucide-react";
|
||||||
|
|
||||||
const columns = [
|
const headerColumns = [
|
||||||
{ name: "ID", uid: "id", sortable: true },
|
{ name: "ID", uid: "id", sortable: true },
|
||||||
{ name: "Title", uid: "title", sortable: true },
|
{ name: "Title", uid: "title", sortable: true },
|
||||||
{ name: "Priority", uid: "priority", sortable: true },
|
{ name: "Priority", uid: "priority", sortable: true },
|
||||||
{ name: "Actions", uid: "actions" },
|
{ name: "Actions", uid: "actions" },
|
||||||
];
|
];
|
||||||
|
|
||||||
const priorities = [
|
import priorities from "./priorities";
|
||||||
{ name: "Critical", uid: "critical", color: "danger" },
|
|
||||||
{ name: "High", uid: "high", color: "warning" },
|
|
||||||
{ name: "Medium", uid: "medium", color: "primary" },
|
|
||||||
{ name: "Low", uid: "low", color: "success" },
|
|
||||||
];
|
|
||||||
|
|
||||||
type Case = {
|
type Case = {
|
||||||
id: number;
|
id: number;
|
||||||
@@ -54,7 +49,6 @@ export default function TestCaseTable({ projectId, cases }) {
|
|||||||
column: "id",
|
column: "id",
|
||||||
direction: "ascending",
|
direction: "ascending",
|
||||||
});
|
});
|
||||||
const headerColumns = columns;
|
|
||||||
|
|
||||||
const sortedItems = useMemo(() => {
|
const sortedItems = useMemo(() => {
|
||||||
return [...cases].sort((a: Case, b: Case) => {
|
return [...cases].sort((a: Case, b: Case) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user