salix/modules/client/front/postcode/index.spec.js

36 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-07-08 12:07:09 +00:00
import './index';
describe('Client', () => {
describe('Component vnClientPostcode', () => {
let controller;
let $httpBackend;
2020-03-17 10:17:50 +00:00
let $scope;
2019-07-08 12:07:09 +00:00
beforeEach(ngModule('client'));
2019-07-08 12:07:09 +00:00
2020-07-23 14:46:16 +00:00
beforeEach(inject(($componentController, _$httpBackend_, $rootScope) => {
2019-07-08 12:07:09 +00:00
$httpBackend = _$httpBackend_;
2020-03-17 10:17:50 +00:00
$scope = $rootScope.$new();
const $element = angular.element('<vn-dialog></vn-dialog>');
controller = $componentController('vnClientPostcode', {$element, $scope});
2019-07-08 12:07:09 +00:00
controller.client = {id: 101};
}));
2020-03-03 14:03:54 +00:00
describe('onAccept()', () => {
2019-07-08 12:07:09 +00:00
it('should perform a POST query and show a success snackbar', () => {
let params = {townFk: 1, provinceFk: 1, countryFk: 1, code: '46460'};
controller.data = {townFk: 1, provinceFk: 1, countryFk: 1, code: '46460'};
2020-02-26 12:22:52 +00:00
jest.spyOn(controller.vnApp, 'showMessage');
$httpBackend.when('PATCH', `postcodes`, params).respond(200, params);
$httpBackend.expect('PATCH', `postcodes`, params).respond(params);
2019-07-08 12:07:09 +00:00
2020-03-03 14:03:54 +00:00
controller.onAccept();
2019-07-08 12:07:09 +00:00
$httpBackend.flush();
expect(controller.vnApp.showMessage).toHaveBeenCalledWith('The postcode has been saved');
});
});
});
});