-
Notifications
You must be signed in to change notification settings - Fork 2
/
test-object-property-count.js
70 lines (58 loc) · 1.26 KB
/
test-object-property-count.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
'use strict';
/* global suite: false, setup: false, test: false,
teardown: false, suiteSetup: false, suiteTeardown: false */
var assert = require('assert');
var Registry = require('../');
suite('object-property-count', function() {
var registry = new Registry();
test('minimum count', function() {
var schema = 'minobject';
registry.addSchema({
id: schema,
type: 'object',
allowUnknownProperties: true,
min: 2
});
var errors = registry.test(schema, {
test: 1,
test2: 1
});
assert(!errors);
errors = registry.test(schema, {test: 1});
assert.deepEqual(errors, [[
null,
'object',
'min',
1
]]);
});
test('maximum count', function() {
var schema = 'maxobject';
registry.addSchema({
id: schema,
type: 'object',
allowUnknownProperties: true,
max: 2
});
var errors = registry.test(schema, {
test: 1
});
assert(!errors);
errors = registry.test(schema, {
test: 1,
test2: 1
});
assert(!errors);
errors = registry.test(schema, {
test: 1,
test2: 1,
test3: 'thats too much'
});
assert.deepEqual(errors, [[
null,
'object',
'max',
3
]]);
});
});