232 lines
9.9 KiB
JavaScript
232 lines
9.9 KiB
JavaScript
import './index.js';
|
|
import crudModel from 'core/mocks/crud-model';
|
|
|
|
describe('claim', () => {
|
|
describe('Component vnClaimAction', () => {
|
|
let controller;
|
|
let $httpBackend;
|
|
let $state;
|
|
let $httpParamSerializer;
|
|
let $scope;
|
|
|
|
beforeEach(ngModule('claim'));
|
|
|
|
beforeEach(angular.mock.inject(($rootScope, $componentController, _$state_, _$httpBackend_, _$httpParamSerializer_) => {
|
|
$scope = $rootScope.$new();
|
|
$httpBackend = _$httpBackend_;
|
|
$httpParamSerializer = _$httpParamSerializer_;
|
|
$state = _$state_;
|
|
$state.params.id = 1;
|
|
|
|
const $element = angular.element('<vn-claim-action></vn-claim-action>');
|
|
controller = $componentController('vnClaimAction', {$element, $scope});
|
|
controller.claim = {ticketFk: 1};
|
|
controller.$.model = {refresh: () => {}};
|
|
controller.$.addSales = {
|
|
hide: () => {},
|
|
show: () => {}
|
|
};
|
|
controller.$.lastTicketsModel = crudModel;
|
|
controller.$.lastTicketsPopover = {
|
|
hide: () => {},
|
|
show: () => {}
|
|
};
|
|
controller.card = {reload: () => {}};
|
|
}));
|
|
|
|
describe('openAddSalesDialog()', () => {
|
|
it('should call getClaimableFromTicket and $.addSales.show', () => {
|
|
controller.$ = {addSales: {show: () => {}}};
|
|
jest.spyOn(controller, 'getClaimedSales');
|
|
jest.spyOn(controller.$.addSales, 'show');
|
|
controller.openAddSalesDialog();
|
|
|
|
expect(controller.getClaimedSales).toHaveBeenCalledWith();
|
|
expect(controller.$.addSales.show).toHaveBeenCalledWith();
|
|
});
|
|
});
|
|
|
|
describe('getClaimedSales()', () => {
|
|
it('should make a query and set salesToClaim', () => {
|
|
controller.claim.id = 1;
|
|
$httpBackend.expectGET(`ClaimBeginnings/1`).respond(200, 1);
|
|
controller.getClaimedSales();
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.claimedSales).toEqual(1);
|
|
});
|
|
});
|
|
|
|
describe('addClaimedSale(saleFk)', () => {
|
|
it('should make a post and call refresh, hide and showSuccess', () => {
|
|
jest.spyOn(controller.$.model, 'refresh');
|
|
jest.spyOn(controller.$.addSales, 'hide');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
$httpBackend.expectPOST(`ClaimEnds/`).respond({});
|
|
controller.addClaimedSale(1);
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.$.model.refresh).toHaveBeenCalledWith();
|
|
expect(controller.$.addSales.hide).toHaveBeenCalledWith();
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
|
});
|
|
});
|
|
|
|
describe('deleteClaimedSale(id)', () => {
|
|
it('should make a delete and call refresh and showSuccess', () => {
|
|
jest.spyOn(controller.$.model, 'refresh');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
$httpBackend.expectDELETE(`ClaimEnds/1`).respond({});
|
|
controller.deleteClaimedSale(1);
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.$.model.refresh).toHaveBeenCalledWith();
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
|
});
|
|
});
|
|
|
|
describe('calculateTotals()', () => {
|
|
it('should calculate the total price of the items claimed', () => {
|
|
controller.salesClaimed = [
|
|
{sale: {quantity: 5, price: 2, discount: 0}},
|
|
{sale: {quantity: 10, price: 2, discount: 0}},
|
|
{sale: {quantity: 10, price: 2, discount: 0}}
|
|
];
|
|
controller.calculateTotals();
|
|
|
|
expect(controller.claimedTotal).toEqual(50);
|
|
});
|
|
});
|
|
|
|
describe('importToNewRefundTicket()', () => {
|
|
it('should perform a post query and add lines from a new ticket', () => {
|
|
jest.spyOn(controller.$.model, 'refresh');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
$httpBackend.expect('POST', `ClaimBeginnings/1/importToNewRefundTicket`).respond({});
|
|
controller.importToNewRefundTicket();
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.$.model.refresh).toHaveBeenCalledWith();
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
|
});
|
|
});
|
|
|
|
describe('showLastTickets()', () => {
|
|
it('should get a list of tickets and call lastTicketsPopover show() method', () => {
|
|
jest.spyOn(controller.$.lastTicketsModel, 'refresh');
|
|
jest.spyOn(controller.$.lastTicketsPopover, 'show');
|
|
controller.showLastTickets({});
|
|
|
|
expect(controller.$.lastTicketsModel.refresh).toHaveBeenCalledWith();
|
|
expect(controller.$.lastTicketsPopover.show).toHaveBeenCalledWith();
|
|
});
|
|
});
|
|
|
|
describe('importTicketLines()', () => {
|
|
it('should perform a post query and add lines from an existent ticket', () => {
|
|
jest.spyOn(controller.$.model, 'refresh');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
jest.spyOn(controller.$.lastTicketsPopover, 'hide');
|
|
let data = {claimFk: 1, ticketFk: 1};
|
|
$httpBackend.expect('POST', `ClaimEnds/importTicketSales`, data).respond({});
|
|
controller.importTicketLines(1);
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.$.model.refresh).toHaveBeenCalledWith();
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
|
expect(controller.$.lastTicketsPopover.hide).toHaveBeenCalledWith();
|
|
});
|
|
});
|
|
|
|
describe('regularize()', () => {
|
|
it('should perform a post query and reload the claim card', () => {
|
|
jest.spyOn(controller.card, 'reload');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
$httpBackend.expect('POST', `Claims/1/regularizeClaim`).respond({});
|
|
controller.regularize();
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.card.reload).toHaveBeenCalledWith();
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
|
});
|
|
});
|
|
|
|
describe('save()', () => {
|
|
it('should perform a patch query and show a success message', () => {
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
const data = {hasToPickUp: true};
|
|
$httpBackend.expect('PATCH', `Claims/1/updateClaimAction`, data).respond({});
|
|
controller.save(data);
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
|
});
|
|
});
|
|
|
|
describe('onUpdateGreugeResponse()', () => {
|
|
const greugeTypeId = 7;
|
|
const freightPickUpPrice = 11;
|
|
it('should do nothing', () => {
|
|
jest.spyOn(controller.$http, 'post');
|
|
jest.spyOn(controller.card, 'reload');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
controller.onUpdateGreugeResponse('cancel');
|
|
|
|
expect(controller.$http.post).not.toHaveBeenCalledWith();
|
|
expect(controller.card.reload).not.toHaveBeenCalledWith();
|
|
expect(controller.vnApp.showSuccess).not.toHaveBeenCalledWith('Greuge inserted!');
|
|
});
|
|
|
|
it('should make a query and get the greugeTypeId and greuge config', () => {
|
|
jest.spyOn(controller.card, 'reload');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
const greugeTypeParams = $httpParamSerializer({filter: {where: {code: 'freightPickUp'}}});
|
|
$httpBackend.expect('GET', `GreugeTypes/findOne?${greugeTypeParams}`).respond({id: greugeTypeId});
|
|
$httpBackend.expect('GET', `GreugeConfigs/findOne`).respond({freightPickUpPrice});
|
|
controller.onUpdateGreugeResponse('accept');
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.greugeTypeFreightId).toEqual(greugeTypeId);
|
|
expect(controller.freightPickUpPrice).toEqual(freightPickUpPrice);
|
|
});
|
|
|
|
// #1957 - Investigate how to test nested httpBackend requests
|
|
xit('should perform a insert into greuges', () => {
|
|
jest.spyOn(controller.card, 'reload');
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
jest.spyOn(controller, 'getGreugeTypeId').and.returnValue(new Promise(resolve => {
|
|
return resolve({id: greugeTypeId});
|
|
}));
|
|
jest.spyOn(controller, 'getGreugeConfig').and.returnValue(new Promise(resolve => {
|
|
return resolve({freightPickUpPrice});
|
|
}));
|
|
|
|
controller.claim.clientFk = 101;
|
|
controller.claim.id = 11;
|
|
let data = {
|
|
clientFk: 101,
|
|
description: `claim: ${controller.claim.id}`,
|
|
amount: freightPickUpPrice,
|
|
greugeTypeFk: greugeTypeId,
|
|
ticketFk: controller.claim.ticketFk
|
|
};
|
|
$httpBackend.expect('POST', `Greuges/`, data).respond(new Promise(resolve => {
|
|
return resolve({id: freightPickUpPrice});
|
|
}));
|
|
controller.onUpdateGreugeResponse('accept').then(res => {
|
|
|
|
}).catch(error => {
|
|
|
|
});
|
|
|
|
$httpBackend.flush();
|
|
});
|
|
});
|
|
});
|
|
});
|