2018-11-08 14:20:42 +00:00
|
|
|
import './index.js';
|
|
|
|
|
2019-02-12 13:40:13 +00:00
|
|
|
describe('Ticket Component vnTicketDescriptor', () => {
|
2018-11-08 14:20:42 +00:00
|
|
|
let $httpBackend;
|
|
|
|
let controller;
|
|
|
|
|
2019-02-12 13:40:13 +00:00
|
|
|
beforeEach(ngModule('ticket'));
|
2018-11-08 14:20:42 +00:00
|
|
|
|
2018-12-22 10:59:26 +00:00
|
|
|
beforeEach(angular.mock.inject(($componentController, _$httpBackend_) => {
|
2018-11-08 14:20:42 +00:00
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
controller = $componentController('vnTicketDescriptor');
|
2019-04-26 06:52:43 +00:00
|
|
|
controller.ticket = {id: 2, invoiceOut: {id: 1}};
|
2019-04-29 05:48:59 +00:00
|
|
|
controller.cardReload = ()=> {
|
|
|
|
return true;
|
|
|
|
};
|
2018-11-08 14:20:42 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe('showAddTurnDialog()', () => {
|
|
|
|
it('should call contrtoller.$scope.addTurn.show()', () => {
|
|
|
|
controller.$scope.addTurn = {show: () => {}};
|
|
|
|
spyOn(controller.$scope.addTurn, 'show');
|
|
|
|
controller.showAddTurnDialog();
|
|
|
|
|
|
|
|
expect(controller.$scope.addTurn.show).toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('addTurn(day)', () => {
|
|
|
|
it('should make a query and call $.addTurn.hide() and vnApp.showSuccess()', () => {
|
|
|
|
controller.$scope.addTurn = {hide: () => {}};
|
|
|
|
spyOn(controller.$scope.addTurn, 'hide');
|
|
|
|
|
|
|
|
$httpBackend.expectPATCH(`/ticket/api/TicketWeeklies`).respond();
|
|
|
|
controller.addTurn(1);
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.$scope.addTurn.hide).toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('showDeleteTicketDialog()', () => {
|
|
|
|
it('should call vnApp.showError() if the ticket isnt editable', () => {
|
|
|
|
controller.ticket.tracking = {state: {alertLevel: 3}};
|
|
|
|
spyOn(controller.vnApp, 'showError');
|
|
|
|
controller.showDeleteTicketDialog();
|
|
|
|
|
|
|
|
expect(controller.vnApp.showError).toHaveBeenCalledWith('This ticket cant be deleted');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call deleteConfirmation.show() if the ticket is editable', () => {
|
|
|
|
controller.ticket.tracking = {state: {alertLevel: 0}};
|
|
|
|
controller.$scope.deleteConfirmation = {show: () => {}};
|
|
|
|
spyOn(controller.$scope.deleteConfirmation, 'show');
|
|
|
|
controller.showDeleteTicketDialog();
|
|
|
|
|
|
|
|
expect(controller.$scope.deleteConfirmation.show).toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('deleteTicket(response)', () => {
|
|
|
|
it('should make a query and call vnApp.showSuccess() if the response is ACCEPT', () => {
|
|
|
|
spyOn(controller.$state, 'go');
|
|
|
|
spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
|
|
|
|
$httpBackend.expectPOST(`/ticket/api/Tickets/deleted`, {id: 2}).respond();
|
|
|
|
controller.deleteTicket('ACCEPT');
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.$state.go).toHaveBeenCalledWith('ticket.index');
|
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Ticket deleted');
|
|
|
|
});
|
|
|
|
});
|
2019-02-11 09:06:26 +00:00
|
|
|
|
2019-02-11 14:01:12 +00:00
|
|
|
describe('showDeliveryNote()', () => {
|
2019-02-11 09:06:26 +00:00
|
|
|
it('should open a new window showing a delivery note PDF document', () => {
|
|
|
|
let expectedPath = '/api/report/rpt-delivery-note?ticketFk=2';
|
|
|
|
spyOn(window, 'open');
|
|
|
|
controller.showDeliveryNote();
|
|
|
|
|
|
|
|
expect(window.open).toHaveBeenCalledWith(expectedPath);
|
|
|
|
});
|
|
|
|
});
|
2019-04-12 11:54:31 +00:00
|
|
|
|
2019-04-26 06:52:43 +00:00
|
|
|
describe('makeInvoice(response)', () => {
|
2019-04-12 11:54:31 +00:00
|
|
|
it('should make a query and call $state.reload() method if the response is ACCEPT', () => {
|
|
|
|
spyOn(controller.$state, 'reload');
|
|
|
|
spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
|
|
|
|
$httpBackend.when('POST', `/ticket/api/Tickets/2/makeInvoice`).respond();
|
|
|
|
$httpBackend.expect('POST', `/ticket/api/Tickets/2/makeInvoice`).respond();
|
2019-04-26 06:52:43 +00:00
|
|
|
controller.makeInvoice('ACCEPT');
|
2019-04-12 11:54:31 +00:00
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Ticket invoiced');
|
|
|
|
expect(controller.$state.reload).toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
});
|
2019-04-26 06:52:43 +00:00
|
|
|
|
|
|
|
describe('regenerateInvoice(response)', () => {
|
|
|
|
it('should make a query and show a success snackbar if the response is ACCEPT', () => {
|
|
|
|
spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
|
|
|
|
$httpBackend.when('POST', `/invoiceOut/api/InvoiceOuts/1/regenerate`).respond();
|
|
|
|
$httpBackend.expect('POST', `/invoiceOut/api/InvoiceOuts/1/regenerate`).respond();
|
|
|
|
controller.regenerateInvoice('ACCEPT');
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Invoice sent for a regeneration, will be available in a few minutes');
|
|
|
|
});
|
|
|
|
});
|
2019-04-29 05:48:59 +00:00
|
|
|
|
|
|
|
describe('changeShipped(response)', () => {
|
|
|
|
it('should make a query and change the shipped hour if the response is ACCEPT', () => {
|
|
|
|
spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
spyOn(controller, 'cardReload');
|
|
|
|
$httpBackend.when('PATCH', `/ticket/api/Tickets/2`,).respond();
|
|
|
|
$httpBackend.expect('PATCH', `/ticket/api/Tickets/2`).respond();
|
|
|
|
controller.changeShipped('ACCEPT');
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Shipped hour updated');
|
|
|
|
expect(controller.cardReload).toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
});
|
2018-11-08 14:20:42 +00:00
|
|
|
});
|
|
|
|
|