salix/modules/ticket/front/basic-data/step-two/index.spec.js

94 lines
3.1 KiB
JavaScript
Raw Normal View History

2019-01-25 11:52:12 +00:00
import './index.js';
describe('Ticket', () => {
describe('Component vnTicketBasicDataStepTwo', () => {
2019-01-25 11:52:12 +00:00
let controller;
beforeEach(ngModule('ticket'));
2019-01-25 11:52:12 +00:00
2020-07-23 14:46:16 +00:00
beforeEach(inject($componentController => {
2020-03-18 07:35:59 +00:00
const $element = angular.element('<vn-ticket-basic-data-step-two><vn-ticket-basic-data-step-two>');
controller = $componentController('vnTicketBasicDataStepTwo', {$element});
2019-01-25 11:52:12 +00:00
}));
describe('getTotalPrice()', () => {
it('should calculate the total price of the sale based on the data received', () => {
controller.ticket = {
sale: {
items: [{
quantity: 10,
price: 0.1,
component: {newPrice: 0.2, difference: 0.3}
}]
}
};
controller.getTotalPrice();
expect(controller.totalPrice).toEqual(1);
});
});
describe('getTotalNewPrice()', () => {
it('should calculate the total new price of the sale based on the data received', () => {
controller.ticket = {
sale: {
items: [{
quantity: 10,
price: 0.1,
component: {newPrice: 0.2, difference: 0.3}
}]
}
};
controller.getTotalNewPrice();
expect(controller.totalNewPrice).toEqual(2);
});
});
describe('getTotalDifferenceOfPrice()', () => {
it('should calculate the total price difference of the sale based on the data received', () => {
controller.ticket = {
sale: {
items: [{
quantity: 10,
price: 0.1,
component: {newPrice: 0.2, difference: 0.3}
}]
}
};
controller.getTotalDifferenceOfPrice();
expect(controller.totalPriceDifference).toEqual(0.3);
2019-01-25 11:52:12 +00:00
});
});
describe('ticketHaveNegatives()', () => {
it('should show if ticket have any negative and any not negative', () => {
controller.ticket = {
sale: {
items: [
{
item: 1,
quantity: 2,
available: 1
},
{
item: 2,
quantity: 1,
available: 5
}
]
}
};
controller.ticketHaveNegatives();
expect(controller.haveNegatives).toEqual(true);
});
});
2019-01-25 11:52:12 +00:00
});
});