44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const { DataTypes, literal } = require('sequelize');
|
|
const defineRun = require('../../models/runs');
|
|
const defineRunCase = require('../../models/runCases');
|
|
|
|
module.exports = function (sequelize) {
|
|
const { verifySignedIn } = require('../../middleware/auth')(sequelize);
|
|
const { verifyProjectVisibleFromRunId } = require('../../middleware/verifyVisible')(sequelize);
|
|
const Run = defineRun(sequelize, DataTypes);
|
|
const RunCase = defineRunCase(sequelize, DataTypes);
|
|
|
|
router.get('/:runId', verifySignedIn, verifyProjectVisibleFromRunId, async (req, res) => {
|
|
const runId = req.params.runId;
|
|
|
|
if (!runId) {
|
|
return res.status(400).json({ error: 'runId is required' });
|
|
}
|
|
|
|
try {
|
|
const run = await Run.findByPk(runId);
|
|
if (!run) {
|
|
return res.status(404).send('Run not found');
|
|
}
|
|
|
|
// Counts test case status belonging to the run
|
|
const statusCounts = await RunCase.findAll({
|
|
attributes: ['status', [literal('COUNT(*)'), 'count']],
|
|
where: {
|
|
runId: run.id,
|
|
},
|
|
group: ['status'],
|
|
});
|
|
|
|
res.json({ run, statusCounts });
|
|
} catch (error) {
|
|
console.error(error);
|
|
res.status(500).send('Internal Server Error');
|
|
}
|
|
});
|
|
|
|
return router;
|
|
};
|