test para el refactor de culticheck Tarea #284
This commit is contained in:
parent
99adbf6a86
commit
58f903b294
|
@ -13,16 +13,7 @@ describe('Component vnMultiCheck', () => {
|
||||||
controller = $componentController('vnMultiCheck', {});
|
controller = $componentController('vnMultiCheck', {});
|
||||||
}));
|
}));
|
||||||
|
|
||||||
describe('models()', () => {
|
describe('checkAll() setter', () => {
|
||||||
it(`should set controller _models property with the argument received`, () => {
|
|
||||||
let argument = 'I am the model';
|
|
||||||
controller.models = argument;
|
|
||||||
|
|
||||||
expect(controller._models).toEqual(argument);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('checkAll()', () => {
|
|
||||||
it(`should set controller _checkAll property with the argument received then call switchChecks()`, () => {
|
it(`should set controller _checkAll property with the argument received then call switchChecks()`, () => {
|
||||||
let argument = 'I am the model';
|
let argument = 'I am the model';
|
||||||
spyOn(controller, 'switchChecks');
|
spyOn(controller, 'switchChecks');
|
||||||
|
@ -35,129 +26,18 @@ describe('Component vnMultiCheck', () => {
|
||||||
|
|
||||||
describe('switchChecks()', () => {
|
describe('switchChecks()', () => {
|
||||||
it(`should set checked property inside each existing elemenet when id begings with no-`, () => {
|
it(`should set checked property inside each existing elemenet when id begings with no-`, () => {
|
||||||
controller.type = {id: 'no-name'};
|
controller.data = [
|
||||||
controller.models = [
|
|
||||||
{name: 'name'},
|
{name: 'name'},
|
||||||
{name: null}
|
{name: null}
|
||||||
];
|
];
|
||||||
|
|
||||||
expect(controller._models[0].checked).not.toBeDefined();
|
expect(controller.data[0].checked).not.toBeDefined();
|
||||||
expect(controller._models[1].checked).not.toBeDefined();
|
expect(controller.data[1].checked).not.toBeDefined();
|
||||||
controller._checkAll = 1;
|
controller._checkAll = 1;
|
||||||
controller.switchChecks();
|
controller.switchChecks();
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeTruthy();
|
expect(controller.data[0].checked).toBeTruthy();
|
||||||
expect(controller._models[1].checked).toBeTruthy();
|
expect(controller.data[1].checked).toBeTruthy();
|
||||||
});
|
|
||||||
|
|
||||||
it(`should set checked property inside each existing elemenet when id begings with equal-`, () => {
|
|
||||||
controller.type = {id: 'equal-name', name: 'name'};
|
|
||||||
controller.models = [
|
|
||||||
{name: null},
|
|
||||||
{name: 'name'}
|
|
||||||
];
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).not.toBeDefined();
|
|
||||||
expect(controller._models[1].checked).not.toBeDefined();
|
|
||||||
controller._checkAll = 1;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeTruthy();
|
|
||||||
expect(controller._models[1].checked).toBeTruthy();
|
|
||||||
});
|
|
||||||
|
|
||||||
it(`should set checked property inside each existing elemenet when begings with anything but any, all, no- or equal-`, () => {
|
|
||||||
controller.type = {id: 'name'};
|
|
||||||
controller.models = [
|
|
||||||
{name: null},
|
|
||||||
{name: 'name'}
|
|
||||||
];
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).not.toBeDefined();
|
|
||||||
expect(controller._models[1].checked).not.toBeDefined();
|
|
||||||
controller._checkAll = 1;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeTruthy();
|
|
||||||
expect(controller._models[1].checked).toBeTruthy();
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('when id is any', () => {
|
|
||||||
it('should set element checked property based on controller._checkAll', () => {
|
|
||||||
controller.type = {id: 'any'};
|
|
||||||
controller.models = [
|
|
||||||
{name: 'name'}
|
|
||||||
];
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).not.toBeDefined();
|
|
||||||
controller._checkAll = 1;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeTruthy();
|
|
||||||
controller._checkAll = 0;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeFalsy();
|
|
||||||
controller._checkAll = 2;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeFalsy();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('when id is all', () => {
|
|
||||||
it('should set element checked property based on controller._checkAll property', () => {
|
|
||||||
controller.type = {id: 'all'};
|
|
||||||
controller.models = [
|
|
||||||
{name: 'name'}
|
|
||||||
];
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).not.toBeDefined();
|
|
||||||
controller._checkAll = 1;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeTruthy();
|
|
||||||
controller._checkAll = 0;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeFalsy();
|
|
||||||
controller._checkAll = 2;
|
|
||||||
controller.switchChecks();
|
|
||||||
|
|
||||||
expect(controller._models[0].checked).toBeFalsy();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('$onChanges()', () => {
|
|
||||||
it('should set controller.type to empty object and checkAll to zero', () => {
|
|
||||||
controller.type = {id: 'all'};
|
|
||||||
controller._checkAll = 1;
|
|
||||||
controller.$onChanges();
|
|
||||||
|
|
||||||
expect(controller.type).toEqual({});
|
|
||||||
expect(controller._checkAll).toEqual(0);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe('type setter', () => {
|
|
||||||
it('should set controller.type to empty object and checkAll based on controller.type.id', () => {
|
|
||||||
let value = {id: 'all'};
|
|
||||||
controller._checkAll = 0;
|
|
||||||
controller.type = value;
|
|
||||||
|
|
||||||
expect(controller.type).toEqual({});
|
|
||||||
expect(controller._checkAll).toEqual(1);
|
|
||||||
value = {id: 'any'};
|
|
||||||
controller.type = value;
|
|
||||||
|
|
||||||
expect(controller.type).toEqual({});
|
|
||||||
expect(controller._checkAll).toEqual(0);
|
|
||||||
value = {id: 'any other id name'};
|
|
||||||
controller.type = value;
|
|
||||||
|
|
||||||
expect(controller.type).toEqual({});
|
|
||||||
expect(controller._checkAll).toEqual(2);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue