forked from vue-generators/vue-form-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabstractField.spec.js
484 lines (385 loc) · 11 KB
/
abstractField.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
import { mount, createLocalVue } from "@vue/test-utils";
import AbstractField from "src/fields/abstractField";
const localVue = createLocalVue();
localVue.component("AbstractField", AbstractField);
let wrapper, field;
const defaultTemplate = `<abstract-field :schema="schema" :model="model" :disabled="disabled" ref="field"></abstract-field>`;
function createField(data, methods, template) {
const Component = {
template: template || defaultTemplate,
data() {
return data;
},
methods: methods
};
const _wrapper = mount(Component, {
localVue
});
wrapper = _wrapper;
field = _wrapper.vm.$refs.field;
return _wrapper;
}
describe("abstractField.vue", () => {
describe("check static value", () => {
let schema = {
type: "text",
label: "Name",
model: "name"
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model });
});
it("should give the model static value", () => {
expect(wrapper.exists()).to.be.true;
expect(field.value).to.be.equal("John Doe");
});
it("should set new value to model if value changed", () => {
field.value = "Foo Bar";
expect(model.name).to.be.equal("Foo Bar");
});
});
describe("check nested value", () => {
let schema = {
type: "text",
label: "Name",
model: "user.name"
};
let model = {
user: {
name: "John Doe"
}
};
beforeEach(() => {
createField({ schema, model });
});
it("should give the model static value", () => {
expect(field).to.be.exist;
expect(field.value).to.be.equal("John Doe");
});
it("should set new value to model if value changed", () => {
field.value = "Foo Bar";
expect(model.user.name).to.be.equal("Foo Bar");
});
});
describe("check nested value if not exists", () => {
let schema = {
type: "text",
label: "Name",
model: "user.name.first"
};
let model = {
user: {}
};
beforeEach(() => {
createField({ schema, model });
});
it("should give the model static value", () => {
expect(field).to.be.exist;
expect(field.value).to.be.undefined;
});
it("should set new value to model if value changed", () => {
field.value = "Foo Bar";
expect(model.user.name.first).to.be.equal("Foo Bar");
});
});
describe("check value as get/set function", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
get: sinon.stub().returns("John Smith"),
set: sinon.stub()
};
let model = {};
beforeEach(() => {
createField({ schema, model });
});
it.skip("should be called the schema.get function", () => {
expect(field).to.be.exist;
field.schema.get.reset();
expect(field.value).to.be.equal("John Smith");
expect(field.schema.get.calledOnce).to.be.true;
});
it("should set new value to model if value changed", () => {
field.schema.set.reset();
field.value = "John Roe";
expect(field.schema.set.calledOnce).to.be.true;
expect(field.schema.set.calledWith(model, "John Roe")).to.be.true;
});
});
describe("check formatValueToField & formatValueToModel function", () => {
let schema = {
type: "text",
label: "Name",
model: "name"
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model });
field.formatValueToField = function(value) {
return "**" + value + "**";
};
field.formatValueToModel = function(value) {
return "!!" + value + "!!";
};
});
it("should return the formatted value", () => {
expect(field.value).to.be.equal("**John Doe**");
});
it("should set the formatted value to model", () => {
field.value = "Foo Bar";
expect(model.name).to.be.equal("!!Foo Bar!!");
});
});
describe("check schema onChanged event", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
onChanged: sinon.spy()
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model });
});
it("should called once the schema.onChanged", () => {
schema.onChanged.resetHistory();
field.value = "Jane Doe";
expect(schema.onChanged.calledOnce).to.be.true;
});
});
describe("check validateAfterChanged option", () => {
let schema = {
type: "text",
label: "Name",
model: "name"
};
let model = { name: "John Doe" };
let options = {
validateAfterChanged: false
};
beforeEach(() => {
createField({ schema, model, options });
field.validate = sinon.spy();
});
it("should not call validate function after value changed", () => {
model.name = "Jane Doe";
expect(field.validate.callCount).to.be.equal(0);
});
it("should call validate function after value changed", () => {
options.validateAfterChanged = true;
// seems to be an issue with how the field is defined, the update to 'options' isn't carried over to field.formOptions
field.formOptions = options;
field.value = "Jane Roe";
expect(field.validate.callCount).to.be.equal(1);
});
});
describe("check validate function with one validator", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
validator: sinon.spy()
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model });
});
it("should call schema validator", () => {
schema.validator.resetHistory();
field.validate();
expect(schema.validator.calledOnce).to.be.true;
expect(schema.validator.calledWith(field.value, schema, model)).to.be.true;
});
});
describe("check validate function if field is disabled", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
validator: sinon.spy()
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model, disabled: true });
});
it("should not call schema validator", () => {
schema.validator.resetHistory();
field.validate();
expect(schema.validator.callCount).to.be.equal(0);
});
});
describe("check validate function if field is readonly", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
readonly: true,
validator: sinon.spy()
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model });
});
it("should not call schema validator", () => {
schema.validator.resetHistory();
field.validate();
expect(schema.validator.callCount).to.be.equal(0);
});
});
describe("check validate function with validator array", () => {
let spy1 = sinon.spy();
let spy2 = sinon.spy();
let schema = {
type: "text",
label: "Name",
model: "name",
validator: [spy1, spy2]
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model });
});
it("should call schema validator", () => {
spy1.resetHistory();
spy2.resetHistory();
field.validate();
expect(spy1.calledOnce).to.be.true;
expect(spy1.calledWith(field.value, schema, model)).to.be.true;
expect(spy2.calledOnce).to.be.true;
expect(spy2.calledWith(field.value, schema, model)).to.be.true;
});
});
describe("check schema onValidated event", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
validator: sinon.stub().returns("Validation error!"),
onValidated: sinon.spy()
};
let model = { name: "John Doe" };
beforeEach(() => {
createField({ schema, model });
});
it("should called once the schema.onValidated", () => {
schema.onValidated.resetHistory();
let res = field.validate();
expect(res).to.be.an.instanceof(Array);
expect(res.length).to.be.equal(1);
expect(res[0]).to.be.equal("Validation error!");
expect(schema.onValidated.calledOnce).to.be.true;
expect(schema.onValidated.calledWith(model, field.errors, schema)).to.be.true;
});
});
describe("check schema onValidated event", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
min: 3,
validator: ["string"]
};
let model = { name: "John Doe" };
let onValidated = sinon.spy();
beforeEach(() => {
createField(
{ schema, model },
{ onValidated },
`<abstract-field :schema="schema" :model="model" ref="field" @validated="onValidated"></abstract-field>`
);
});
it("should return empty array", () => {
onValidated.resetHistory();
let res = field.validate();
expect(res).to.be.an.instanceof(Array);
expect(res.length).to.be.equal(0);
expect(onValidated.callCount).to.be.equal(1);
expect(onValidated.calledWith(true, [])).to.be.true;
});
it("should not call 'onValidated'", () => {
onValidated.resetHistory();
let res = field.validate(true);
expect(res).to.be.an.instanceof(Array);
expect(res.length).to.be.equal(0);
expect(onValidated.callCount).to.be.equal(0);
});
it("should return empty array", () => {
model.name = "Al";
onValidated.resetHistory();
let res = field.validate();
expect(res).to.be.an.instanceof(Array);
expect(res.length).to.be.equal(1);
expect(res[0]).to.be.equal("The length of text is too small! Current: 2, Minimum: 3");
expect(onValidated.callCount).to.be.equal(1);
expect(onValidated.calledWith(false, field.errors, field)).to.be.true;
});
});
describe("check clearValidationErrors", () => {
let schema = {
type: "text",
label: "Name",
model: "name",
validator: sinon.stub().returns("Validation error!")
};
let model = { name: "John Doe" };
before(() => {
createField({ schema, model });
});
it("should be undefined", () => {
expect(field.errors).to.be.an.instanceof(Array);
});
it("should be an empty array", () => {
field.clearValidationErrors();
expect(field.errors).to.be.not.undefined;
expect(field.errors).to.be.length(0);
});
it("should contain one error string", () => {
field.validate();
expect(field.errors).to.be.length(1);
expect(field.errors[0]).to.be.equal("Validation error!");
});
});
describe("check getFieldID function", () => {
let schema = {
type: "text",
label: "First Name",
model: "user__model",
inputName: "input_name"
};
let model = {};
before(() => {
createField({ schema, model });
});
it("should return slugified inputName, if available", () => {
expect(field.getFieldID(schema)).to.be.equal("input-name");
});
it("should return slugified label, if no inputName", () => {
delete schema.inputName;
expect(field.getFieldID(schema)).to.be.equal("first-name");
});
it("should return slugified model name, if no inputName or label", () => {
delete schema.label;
expect(field.getFieldID(schema)).to.be.equal("user-model");
});
});
describe("check classes application to fields", () => {
let schema = {
type: "text",
label: "First Name",
model: "user__model",
inputName: "input_name",
fieldClasses: ["applied-class", "another-class"]
};
let model = {};
before(() => {
createField({ schema, model });
});
it("should have 2 classes ('applied-class' and 'another-class')", () => {
expect(field.getFieldClasses().length).to.be.equal(2);
expect(field.getFieldClasses()[0]).to.be.equal("applied-class");
expect(field.getFieldClasses()[1]).to.be.equal("another-class");
});
});
});