salix/front/core/components/input-number/index.spec.js

69 lines
2.5 KiB
JavaScript
Raw Normal View History

2018-09-13 09:27:38 +00:00
import './index.js';
describe('Component vnInputNumber', () => {
let $scope;
let $attrs;
let $timeout;
let $element;
let controller;
2019-09-13 14:09:14 +00:00
beforeEach(angular.mock.module('vnCore', $translateProvider => {
$translateProvider.translations('en', {});
}));
2018-09-13 09:27:38 +00:00
beforeEach(angular.mock.inject(($componentController, $rootScope) => {
2018-09-13 09:27:38 +00:00
$scope = $rootScope.$new();
2019-09-09 08:57:10 +00:00
$attrs = {field: '$ctrl.client.socialName'};
$element = angular.element('<vn-input-number label="SocialName" field="$ctrl.client.socialName"><input type="number"><div class="infix"><div class="rightIcons"></div></vn-input-number>');
2018-09-13 09:27:38 +00:00
controller = $componentController('vnInputNumber', {$element, $scope, $attrs, $timeout, $transclude: () => {}});
2019-04-09 11:18:55 +00:00
controller.input = $element[0].querySelector('input');
controller.validate = () => {};
2018-09-13 09:27:38 +00:00
}));
describe('value() setter', () => {
2019-04-09 11:18:55 +00:00
it(`should set a value, add the class 'not-empty' and then call validateValue() method`, () => {
spyOn(controller, 'validateValue');
2018-09-13 09:27:38 +00:00
2019-04-09 11:18:55 +00:00
controller.value = 10;
2018-09-13 09:27:38 +00:00
let classes = controller.element.classList.toString();
2019-04-09 11:18:55 +00:00
expect(classes).toContain('not-empty');
expect(controller.validateValue).toHaveBeenCalledWith();
2018-09-13 09:27:38 +00:00
});
2019-04-09 11:18:55 +00:00
it(`should set an empty value, remove the class 'not-empty' and then call validateValue() method`, () => {
spyOn(controller, 'validateValue');
2018-09-13 09:27:38 +00:00
2019-04-09 11:18:55 +00:00
controller.value = null;
2018-09-13 09:27:38 +00:00
2019-04-09 11:18:55 +00:00
let classes = controller.element.classList.toString();
2018-09-13 09:27:38 +00:00
2019-04-09 11:18:55 +00:00
expect(classes).not.toContain('not-empty');
expect(controller.validateValue).toHaveBeenCalledWith();
2018-09-13 09:27:38 +00:00
});
});
describe('validateValue()', () => {
2019-04-09 11:18:55 +00:00
it(`should call hasValidValue() and not add the class invalid and validated`, () => {
controller.input.min = 0;
controller.input.value = 10;
2018-09-13 09:27:38 +00:00
controller.validateValue();
let classes = controller.element.querySelector('.infix').classList.toString();
2019-04-10 10:04:11 +00:00
expect(classes).not.toContain('validated invalid');
2018-09-13 09:27:38 +00:00
});
2019-04-09 11:18:55 +00:00
it(`should call hasValidValue() and add the class invalid and validated`, () => {
controller.input.min = 0;
controller.input.value = -10;
2018-09-13 09:27:38 +00:00
controller.validateValue();
let classes = controller.element.querySelector('.infix').classList.toString();
2019-04-10 10:04:11 +00:00
expect(classes).toContain('validated invalid');
2018-09-13 09:27:38 +00:00
});
});
});