salix/modules/ticket/back/methods/sale/specs/canEdit.spec.js

194 lines
6.0 KiB
JavaScript
Raw Normal View History

const models = require('vn-loopback/server/server').models;
describe('sale canEdit()', () => {
2022-10-31 13:13:06 +00:00
const employeeId = 1;
2022-10-31 13:13:06 +00:00
describe('sale editTracked', () => {
it('should return true if the role is production regardless of the saleTrackings', async() => {
const tx = await models.Sale.beginTransaction({});
2022-10-31 13:13:06 +00:00
try {
const options = {transaction: tx};
2022-10-31 13:13:06 +00:00
const productionUserID = 49;
const ctx = {req: {accessToken: {userId: productionUserID}}};
2022-10-31 13:13:06 +00:00
const sales = [25];
2022-10-31 13:13:06 +00:00
const result = await models.Sale.canEdit(ctx, sales, options);
2022-10-31 13:13:06 +00:00
expect(result).toEqual(true);
2022-10-31 13:13:06 +00:00
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
2022-10-31 13:13:06 +00:00
it('should return true if the role is not production and none of the sales has saleTracking', async() => {
const tx = await models.Sale.beginTransaction({});
2022-10-31 13:13:06 +00:00
try {
const options = {transaction: tx};
2022-10-31 13:13:06 +00:00
const salesPersonUserID = 18;
const ctx = {req: {accessToken: {userId: salesPersonUserID}}};
2022-10-31 13:13:06 +00:00
const sales = [10];
2022-10-31 13:13:06 +00:00
const result = await models.Sale.canEdit(ctx, sales, options);
2022-10-31 13:13:06 +00:00
expect(result).toEqual(true);
2022-10-31 13:13:06 +00:00
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
2022-10-31 13:13:06 +00:00
it('should return false if any of the sales has a saleTracking record', async() => {
const tx = await models.Sale.beginTransaction({});
2022-10-31 13:13:06 +00:00
try {
const options = {transaction: tx};
2022-10-31 13:13:06 +00:00
const buyerId = 35;
const ctx = {req: {accessToken: {userId: buyerId}}};
2022-10-31 13:13:06 +00:00
const sales = [31];
2022-10-31 13:13:06 +00:00
const result = await models.Sale.canEdit(ctx, sales, options);
2022-10-31 13:13:06 +00:00
expect(result).toEqual(false);
2022-10-31 13:13:06 +00:00
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
});
2022-10-31 13:13:06 +00:00
describe('sale editCloned', () => {
const saleCloned = [29];
2022-10-31 13:13:06 +00:00
it('should return false if any of the sales is cloned', async() => {
const tx = await models.Sale.beginTransaction({});
2022-10-31 13:13:06 +00:00
try {
const options = {transaction: tx};
2022-10-31 13:13:06 +00:00
const buyerId = 35;
const ctx = {req: {accessToken: {userId: buyerId}}};
const result = await models.Sale.canEdit(ctx, saleCloned, options);
2022-10-31 13:13:06 +00:00
expect(result).toEqual(false);
2022-10-31 13:13:06 +00:00
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
2022-10-06 13:04:27 +00:00
2022-10-31 13:13:06 +00:00
it('should return true if any of the sales is cloned and has the correct role', async() => {
const tx = await models.Sale.beginTransaction({});
const roleEnabled = await models.ACL.findOne({
where: {
2022-10-31 13:13:06 +00:00
model: 'Sale',
property: 'editCloned',
permission: 'ALLOW'
}
});
2022-10-31 13:13:06 +00:00
if (!roleEnabled || !roleEnabled.principalId) return await tx.rollback();
try {
const options = {transaction: tx};
const role = await models.Role.findOne({
where: {
name: roleEnabled.principalId
}
});
const ctx = {req: {accessToken: {userId: role.id}}};
const result = await models.Sale.canEdit(ctx, saleCloned, options);
2022-10-31 13:13:06 +00:00
expect(result).toEqual(true);
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
});
2022-10-31 13:13:06 +00:00
describe('sale editFloramondo', () => {
it('should return false if any of the sales isFloramondo', async() => {
const tx = await models.Sale.beginTransaction({});
const sales = [26];
2022-10-31 13:13:06 +00:00
try {
const options = {transaction: tx};
const ctx = {req: {accessToken: {userId: employeeId}}};
// For test
const saleToEdit = await models.Sale.findById(sales[0], null, options);
await saleToEdit.updateAttribute('itemFk', 9, options);
const result = await models.Sale.canEdit(ctx, sales, options);
expect(result).toEqual(false);
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
2022-10-31 13:13:06 +00:00
it('should return true if any of the sales is of isFloramondo and has the correct role', async() => {
const tx = await models.Sale.beginTransaction({});
const sales = [26];
2022-10-31 13:13:06 +00:00
const roleEnabled = await models.ACL.findOne({
where: {
2022-10-31 13:13:06 +00:00
model: 'Sale',
property: 'editFloramondo',
permission: 'ALLOW'
}
});
2022-10-31 13:13:06 +00:00
if (!roleEnabled || !roleEnabled.principalId) return await tx.rollback();
2022-10-31 13:13:06 +00:00
try {
const options = {transaction: tx};
2022-10-31 13:13:06 +00:00
const role = await models.Role.findOne({
where: {
name: roleEnabled.principalId
}
});
const ctx = {req: {accessToken: {userId: role.id}}};
2022-10-31 13:13:06 +00:00
// For test
const saleToEdit = await models.Sale.findById(sales[0], null, options);
await saleToEdit.updateAttribute('itemFk', 9, options);
const result = await models.Sale.canEdit(ctx, sales, options);
expect(result).toEqual(true);
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
});
});