95 lines
3.9 KiB
JavaScript
95 lines
3.9 KiB
JavaScript
|
import './index.js';
|
||
|
|
||
|
describe('claim', () => {
|
||
|
describe('Component vnClaimDetail', () => {
|
||
|
let $componentController;
|
||
|
let controller;
|
||
|
let $httpBackend;
|
||
|
let $state;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
angular.mock.module('claim');
|
||
|
});
|
||
|
|
||
|
beforeEach(angular.mock.inject((_$componentController_, _$state_, _$httpBackend_, $rootScope) => {
|
||
|
$componentController = _$componentController_;
|
||
|
$httpBackend = _$httpBackend_;
|
||
|
$httpBackend.when('GET', /\/locale\/\w+\/[a-z]{2}\.json/).respond({});
|
||
|
$httpBackend.when('GET', 'claim/api/Claims/ClaimBeginnings').respond({});
|
||
|
$state = _$state_;
|
||
|
$state.params.id = 1;
|
||
|
|
||
|
controller = $componentController('vnClaimDetail', {$state: $state});
|
||
|
controller.claim = {ticketFk: 1};
|
||
|
controller.$.model = {refresh: () => {}};
|
||
|
controller.$.addSales = {
|
||
|
hide: () => {},
|
||
|
show: () => {}
|
||
|
};
|
||
|
}));
|
||
|
|
||
|
describe('openAddSalesDialog()', () => {
|
||
|
it('should call getClaimableFromTicket and $.addSales.show', () => {
|
||
|
controller.$ = {addSales: {show: () => {}}};
|
||
|
spyOn(controller, 'getClaimableFromTicket');
|
||
|
spyOn(controller.$.addSales, 'show');
|
||
|
controller.openAddSalesDialog();
|
||
|
|
||
|
expect(controller.getClaimableFromTicket).toHaveBeenCalledWith();
|
||
|
expect(controller.$.addSales.show).toHaveBeenCalledWith();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('getClaimableFromTicket()', () => {
|
||
|
it('should make a query and set salesToClaim', () => {
|
||
|
$httpBackend.expectGET(`/api/Sales/getClaimableFromTicket?ticketFk=1`).respond(200, 1);
|
||
|
controller.getClaimableFromTicket();
|
||
|
$httpBackend.flush();
|
||
|
|
||
|
expect(controller.salesToClaim).toEqual(1);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('addClaimedSale(saleFk)', () => {
|
||
|
it('should make a post and call refresh, hide and showSuccess', () => {
|
||
|
spyOn(controller.$.model, 'refresh');
|
||
|
spyOn(controller.$.addSales, 'hide');
|
||
|
spyOn(controller.vnApp, 'showSuccess');
|
||
|
$httpBackend.expectPOST(`claim/api/ClaimBeginnings/`).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', () => {
|
||
|
spyOn(controller.$.model, 'refresh');
|
||
|
spyOn(controller.vnApp, 'showSuccess');
|
||
|
$httpBackend.expectDELETE(`claim/api/ClaimBeginnings/1`).respond({});
|
||
|
controller.deleteClaimedSale(1);
|
||
|
$httpBackend.flush();
|
||
|
|
||
|
expect(controller.$.model.refresh).toHaveBeenCalledWith();
|
||
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('setClaimedQuantity(id, claimedQuantity)', () => {
|
||
|
it('should make a patch and call refresh and showSuccess', () => {
|
||
|
spyOn(controller.$.model, 'refresh');
|
||
|
spyOn(controller.vnApp, 'showSuccess');
|
||
|
$httpBackend.expectPATCH(`claim/api/ClaimBeginnings/`).respond({});
|
||
|
controller.setClaimedQuantity(1, 1);
|
||
|
$httpBackend.flush();
|
||
|
|
||
|
expect(controller.$.model.refresh).toHaveBeenCalledWith();
|
||
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|