2018-05-25 08:03:45 +00:00
|
|
|
import './index.js';
|
2018-05-16 06:13:39 +00:00
|
|
|
|
|
|
|
describe('ticket', () => {
|
|
|
|
describe('Component vnTicketDataStepOne', () => {
|
|
|
|
let $componentController;
|
|
|
|
let $state;
|
|
|
|
let controller;
|
|
|
|
let $httpBackend;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
angular.mock.module('ticket');
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(angular.mock.inject((_$componentController_, _$state_, _$httpBackend_) => {
|
|
|
|
$componentController = _$componentController_;
|
|
|
|
$state = _$state_;
|
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
controller = $componentController('vnTicketDataStepOne', {$state: $state});
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe('isFormInvalid()', () => {
|
|
|
|
it('should check if all form fields are valid', () => {
|
|
|
|
controller.ticket = {
|
2018-05-22 06:14:16 +00:00
|
|
|
clientFk: 1,
|
|
|
|
addressFk: 121,
|
|
|
|
agencyModeFk: 1,
|
|
|
|
companyFk: 442,
|
2018-05-25 08:03:45 +00:00
|
|
|
shipped: new Date(),
|
|
|
|
landed: new Date()
|
2018-05-16 06:13:39 +00:00
|
|
|
};
|
2018-05-22 06:14:16 +00:00
|
|
|
|
2018-05-16 06:13:39 +00:00
|
|
|
let result = controller.isFormInvalid();
|
|
|
|
expect(result).toBeFalsy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('onStepChange()', () => {
|
|
|
|
it('should call onStepChange method and return a NO_AGENCY_AVAILABLE signal error', async () => {
|
|
|
|
controller.ticket = {
|
|
|
|
id: 1,
|
|
|
|
clientFk: 1,
|
|
|
|
addressFk: 121,
|
|
|
|
agencyModeFk: 1,
|
|
|
|
companyFk: 442,
|
2018-05-25 08:03:45 +00:00
|
|
|
shipped: new Date(),
|
|
|
|
landed: new Date()
|
2018-05-22 06:14:16 +00:00
|
|
|
};
|
2018-05-16 06:13:39 +00:00
|
|
|
|
2018-05-22 06:14:16 +00:00
|
|
|
let data = {
|
2018-05-16 06:13:39 +00:00
|
|
|
addressFk: 121,
|
|
|
|
agencyModeFk: 1,
|
2018-05-25 08:03:45 +00:00
|
|
|
landed: new Date()
|
2018-05-22 06:14:16 +00:00
|
|
|
};
|
2018-05-25 08:03:45 +00:00
|
|
|
let response = {data: {error: new Error('NO_AGENCY_AVAILABLE')}};
|
2018-05-16 06:13:39 +00:00
|
|
|
|
2018-05-22 06:14:16 +00:00
|
|
|
$httpBackend.whenPOST(`/ticket/api/sales/1/priceDifference`, data).respond(400, response);
|
|
|
|
$httpBackend.expectPOST(`/ticket/api/sales/1/priceDifference`, data);
|
2018-05-25 08:03:45 +00:00
|
|
|
await controller.onStepChange();
|
2018-05-22 06:14:16 +00:00
|
|
|
$httpBackend.flush();
|
2018-05-16 06:13:39 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|