chore: test code for cases index (#279)

This commit is contained in:
kimatata
2025-09-13 12:11:22 +09:00
committed by GitHub
parent a7882dd769
commit 72fd3af24f
4 changed files with 148 additions and 41 deletions

View File

@@ -1,66 +0,0 @@
const express = require('express');
const router = express.Router();
const { DataTypes, Op } = require('sequelize');
const defineCase = require('../../models/cases');
module.exports = function (sequelize) {
const Case = defineCase(sequelize, DataTypes);
const { verifySignedIn } = require('../../middleware/auth')(sequelize);
const { verifyProjectVisibleFromFolderId } = require('../../middleware/verifyVisible')(sequelize);
router.get('/', verifySignedIn, verifyProjectVisibleFromFolderId, async (req, res) => {
const { folderId, priority, type, q } = req.query;
if (!folderId) {
return res.status(400).json({ error: 'folderId is required' });
}
try {
const whereClause = {
folderId: folderId,
};
if (q) {
const searchTerm = q.trim();
if (searchTerm.length > 100) {
return res.status(400).json({ error: 'Search term too long' });
}
if (searchTerm.length >= 2) {
whereClause[Op.or] = [{ title: { [Op.like]: `%${q}%` } }];
}
}
if (priority) {
const priorityValues = priority
.split(',')
.map((p) => parseInt(p.trim(), 10))
.filter((p) => !isNaN(p));
if (priorityValues.length > 0) {
whereClause.priority = { [Op.in]: priorityValues };
}
}
if (type) {
const typeValues = type
.split(',')
.map((t) => parseInt(t.trim(), 10))
.filter((t) => !isNaN(t));
if (typeValues.length > 0) {
whereClause.type = { [Op.in]: typeValues };
}
}
const cases = await Case.findAll({
where: whereClause,
});
res.json(cases);
} catch (error) {
console.error(error);
res.status(500).send('Internal Server Error');
}
});
return router;
};