Merge pull request 'test' (!2402) from test into dev
Reviewed-on: #2402 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
4c55ae40ef
|
@ -52,18 +52,16 @@ describe('Operator', () => {
|
|||
});
|
||||
|
||||
it('should not sent notification when is already notified by another worker', async() => {
|
||||
try {
|
||||
await models.NotificationQueue.create({
|
||||
authorFk: 2,
|
||||
notificationFk: notificationName,
|
||||
params: JSON.stringify({'labelerId': labeler, 'sectorId': sectorId, 'workerId': 2}),
|
||||
created: '2001-01-01 12:30:00',
|
||||
status: sentStatus
|
||||
});
|
||||
await models.Operator.updateAll({id: 1}, {labelerFk: labeler, sectorFk: sectorId});
|
||||
} catch (e) {
|
||||
expect(e.message).toEqual('Previous notification sended with the same parameters');
|
||||
}
|
||||
const {id} = await models.NotificationQueue.create({
|
||||
authorFk: 2,
|
||||
notificationFk: notificationName,
|
||||
params: JSON.stringify({'labelerId': labeler, 'sectorId': sectorId, 'workerId': 2}),
|
||||
created: '2001-01-01 11:30:00',
|
||||
status: sentStatus
|
||||
});
|
||||
const notificationQueue = await updateOperatorAndFindNotification();
|
||||
|
||||
expect(notificationQueue.id).toEqual(id);
|
||||
});
|
||||
|
||||
it('should send a notification when the previous one has distinct params', async() => {
|
||||
|
|
|
@ -18,7 +18,7 @@ module.exports = Self => {
|
|||
const {backupPrinterNotificationDelay} = await models.ProductionConfig.findOne();
|
||||
if (backupPrinterNotificationDelay) {
|
||||
const notifications = await models.NotificationQueue.find(
|
||||
{where: {created: {gte: Date.vnNow() - (backupPrinterNotificationDelay * 1000) + (3600 * 1000)},
|
||||
{where: {created: {gte: new Date(Date.vnNow() - (backupPrinterNotificationDelay * 1000))},
|
||||
notificationFk: notificationName,
|
||||
status: 'sent'
|
||||
}
|
||||
|
@ -30,8 +30,7 @@ module.exports = Self => {
|
|||
return Object.keys(criteria).every(key => criteria[key] === paramsObj?.[key]);
|
||||
});
|
||||
|
||||
if (filteredNotifications.length >= 1)
|
||||
throw new Error('Previous notification sended with the same parameters');
|
||||
if (filteredNotifications.length >= 1) return;
|
||||
}
|
||||
|
||||
await models.NotificationQueue.create({
|
||||
|
|
Loading…
Reference in New Issue