salix/front/core/components/textfield/textfield.spec.js

83 lines
2.7 KiB
JavaScript
Raw Normal View History

2017-10-04 14:02:53 +00:00
import './textfield.js';
describe('Component vnTextfield', () => {
let $scope;
let $attrs;
let $timeout;
let $element;
let controller;
2017-10-04 14:02:53 +00:00
beforeEach(ngModule('vnCore'));
2017-10-04 14:02:53 +00:00
beforeEach(angular.mock.inject(($componentController, $rootScope) => {
2017-10-04 14:02:53 +00:00
$scope = $rootScope.$new();
$attrs = {};
$element = angular.element('<div><input><div class="leftIcons"><div class="rightIcons"></div></div>');
controller = $componentController('vnTextfield', {$scope, $element, $attrs, $timeout, $transclude: () => {}});
2017-10-04 14:02:53 +00:00
}));
describe('saveOldValue()', () => {
it(`should equal oldValue property to the actual input value`, () => {
controller.value = 'pepino';
controller.saveOldValue();
expect(controller.oldValue).toEqual('pepino');
});
});
2017-10-04 14:02:53 +00:00
describe('value() setter', () => {
2018-06-28 13:54:54 +00:00
it(`should set _value, input.value and hasValue properties to null, '' and false`, () => {
2017-10-04 14:02:53 +00:00
let testValue = '';
controller.value = testValue;
expect(controller._value).toEqual(null);
expect(controller.input.value).toEqual(testValue);
expect(controller.hasValue).toEqual(Boolean(testValue));
});
2018-06-28 13:54:54 +00:00
it(`should set _value, input.value and hasValue propertiest to test, test and true`, () => {
2017-10-04 14:02:53 +00:00
let testValue = 'test';
controller.value = testValue;
expect(controller._value).toEqual(testValue);
expect(controller.input.value).toEqual(testValue);
expect(controller.hasValue).toEqual(Boolean(testValue));
2018-06-28 13:54:54 +00:00
});
it(`should add the class not-empty to the div`, () => {
let testValue = 'test';
controller.value = testValue;
expect(controller.element.classList).toContain('not-empty');
});
2018-06-28 13:54:54 +00:00
});
describe('type() setter', () => {
it(`should set _type to 'text' if theres not given value`, () => {
controller.type = null;
expect(controller._type).toEqual('text');
});
});
describe('vnTabIndex() setter', () => {
it(`should set input.tabindex to a given value`, () => {
controller.vnTabIndex = 9;
expect(controller.input.tabindex).toEqual(9);
});
});
2018-06-28 13:54:54 +00:00
describe('clear()', () => {
2018-09-04 14:51:29 +00:00
it(`should set value property to null, call focus and saveOldValue`, () => {
2018-06-28 13:54:54 +00:00
spyOn(controller.input, 'focus');
2018-09-04 14:51:29 +00:00
spyOn(controller, 'saveOldValue');
2018-06-28 13:54:54 +00:00
controller.clear();
expect(controller.value).toEqual(null);
2018-09-04 14:51:29 +00:00
expect(controller.saveOldValue).toHaveBeenCalledWith();
2018-06-28 13:54:54 +00:00
expect(controller.input.focus).toHaveBeenCalledWith();
2017-10-04 14:02:53 +00:00
});
});
});