2018-08-12 08:55:16 +00:00
|
|
|
import './index.js';
|
2018-05-16 06:13:39 +00:00
|
|
|
|
|
|
|
describe('ticket', () => {
|
|
|
|
describe('Component vnTicketDataStepThree', () => {
|
|
|
|
let $componentController;
|
|
|
|
let $state;
|
|
|
|
let controller;
|
|
|
|
let $httpBackend;
|
2018-08-12 08:55:16 +00:00
|
|
|
let vnApp;
|
2018-05-16 06:13:39 +00:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
angular.mock.module('ticket');
|
|
|
|
});
|
|
|
|
|
2018-08-12 08:55:16 +00:00
|
|
|
beforeEach(angular.mock.inject((_$componentController_, _$state_, _$httpBackend_, _vnApp_) => {
|
2018-05-16 06:13:39 +00:00
|
|
|
$componentController = _$componentController_;
|
|
|
|
$state = _$state_;
|
2018-08-12 08:55:16 +00:00
|
|
|
spyOn($state, 'go');
|
|
|
|
vnApp = _vnApp_;
|
|
|
|
spyOn(vnApp, 'showError');
|
2018-05-16 06:13:39 +00:00
|
|
|
$httpBackend = _$httpBackend_;
|
2018-08-12 08:55:16 +00:00
|
|
|
$httpBackend.when('GET', /\/locale\/\w+\/[a-z]{2}\.json/).respond({});
|
2018-05-16 06:13:39 +00:00
|
|
|
controller = $componentController('vnTicketDataStepThree', {$state: $state});
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe('onSubmit()', () => {
|
2018-08-12 08:55:16 +00:00
|
|
|
it(`should return an error if the item doesn't have option property in the controller`, () => {
|
|
|
|
controller.ticket = {};
|
|
|
|
|
|
|
|
controller.onSubmit();
|
|
|
|
|
|
|
|
expect(vnApp.showError).toHaveBeenCalledWith('Choose an option');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should perform a post query correctly then call two functions()', () => {
|
|
|
|
controller.card = {reload: () => {}};
|
|
|
|
spyOn(controller.card, 'reload');
|
|
|
|
|
2018-05-16 06:13:39 +00:00
|
|
|
controller.ticket = {
|
|
|
|
id: 1,
|
|
|
|
agencyModeFk: 1,
|
|
|
|
addressFk: 121,
|
|
|
|
warehouseFk: 1,
|
|
|
|
shipped: Date.now(),
|
|
|
|
landed: Date.now(),
|
|
|
|
option: 1
|
|
|
|
};
|
|
|
|
|
|
|
|
let data = {
|
|
|
|
agencyModeFk: 1,
|
|
|
|
addressFk: 121,
|
|
|
|
warehouseFk: 1,
|
|
|
|
shipped: Date.now(),
|
|
|
|
landed: Date.now(),
|
|
|
|
option: 1
|
|
|
|
};
|
2018-08-01 07:47:34 +00:00
|
|
|
|
2018-08-12 08:55:16 +00:00
|
|
|
$httpBackend.whenPOST(`/ticket/api/tickets/1/componentUpdate`, data).respond('ok');
|
|
|
|
$httpBackend.expectPOST(`/ticket/api/tickets/1/componentUpdate`, data);
|
|
|
|
controller.onSubmit();
|
|
|
|
$httpBackend.flush();
|
2018-05-16 06:13:39 +00:00
|
|
|
|
2018-08-12 08:55:16 +00:00
|
|
|
expect(controller.$state.go).toHaveBeenCalledWith('ticket.card.summary', jasmine.any(Object));
|
|
|
|
expect(controller.card.reload).toHaveBeenCalledWith();
|
2018-05-16 06:13:39 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-08-12 08:55:16 +00:00
|
|
|
});
|