forked from myndzi/schema-compare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
165 lines (159 loc) · 4.71 KB
/
Copy pathtest.js
File metadata and controls
165 lines (159 loc) · 4.71 KB
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
'use strict';
var cmp = require('./index');
var inspect = require('util').inspect,
format = require('util').format;
require('should');
var things = [void 0, null, true, false, 0, 1, '', 'foo', [ ], { }];
things.filter(function (thing) {
return !thing || typeof thing !== 'object';
}).length.should.equal(things.length-2);
function genThings(cb) {
things.filter(function (thing) {
return !thing || typeof thing !== 'object';
}).forEach(function (thing1) {
things.forEach(function (thing2) {
things.forEach(function (thing3) {
cb(thing1, thing2, thing3);
});
});
});
};
describe('schema-compare', function () {
describe('simple values', function () {
genThings(function (thing1, thing2, thing3) {
var str = format(
'cmp(%s, %s, %s) should equal %s',
inspect(thing1),
inspect(thing2),
inspect(thing3),
inspect(thing2===thing3)
);
it(str, function () {
cmp(thing1, thing2, thing3).should.equal(thing2===thing3);
});
});
});
describe('simple values in arrays', function () {
genThings(function (thing1, thing2, thing3) {
var str = format(
'cmp(%s, %s, %s) should equal %s',
inspect([thing1]),
inspect([thing2]),
inspect([thing3]),
inspect(thing2===thing3)
);
it(str, function () {
cmp([thing1], [thing2], [thing3]).should.equal(thing2===thing3);
});
});
});
describe('simple values in objects', function () {
genThings(function (thing1, thing2, thing3) {
var str = format(
'cmp(%s, %s, %s) should equal %s',
inspect({'foo':thing1}),
inspect({'foo':thing2}),
inspect({'foo':thing3}),
inspect(thing2===thing3)
);
it(str, function () {
cmp({'foo':thing1}, {'foo':thing2}, {'foo':thing3}).should.equal(thing2===thing3);
});
});
});
describe('arrays in arrays', function () {
genThings(function (thing1, thing2, thing3) {
var str = format(
'cmp(%s, %s, %s) should equal %s',
inspect([[thing1]]),
inspect([[thing2]]),
inspect([[thing3]]),
inspect(thing2===thing3)
);
it(str, function () {
cmp(
[[thing1]],
[[thing2]],
[[thing3]]
).should.equal(thing2===thing3);
});
});
});
describe('objects in arrays', function () {
genThings(function (thing1, thing2, thing3) {
var str = format(
'cmp(%s, %s, %s) should equal %s',
inspect([{'foo':thing1}]),
inspect([{'foo':thing2}]),
inspect([{'foo':thing3}]),
inspect(thing2===thing3)
);
it(str, function () {
cmp(
[{'foo':thing1}],
[{'foo':thing2}],
[{'foo':thing3}]
).should.equal(thing2===thing3);
});
});
});
describe('arrays in objects', function () {
genThings(function (thing1, thing2, thing3) {
var str = format(
'cmp(%s, %s, %s) should equal %s',
inspect({'foo':[thing1]}),
inspect({'foo':[thing2]}),
inspect({'foo':[thing3]}),
inspect(thing2===thing3)
);
it(str, function () {
cmp(
{'foo':[thing1]},
{'foo':[thing2]},
{'foo':[thing3]}
).should.equal(thing2===thing3);
});
});
});
describe('objects in objects', function () {
genThings(function (thing1, thing2, thing3) {
var str = format(
'cmp(%s, %s, %s) should equal %s',
inspect({'foo':{'bar':thing1}}),
inspect({'foo':{'bar':thing2}}),
inspect({'foo':{'bar':thing3}}),
inspect(thing2===thing3)
);
it(str, function () {
cmp(
{'foo':{'bar':thing1}},
{'foo':{'bar':thing2}},
{'foo':{'bar':thing3}}
).should.equal(thing2===thing3);
});
});
});
describe('empty array in schema', function () {
it('cmp([], 1, 1) should equal true', function () {
cmp([], [1], [1]).should.equal(true);
});
it('cmp([], 1, 0) should equal false', function () {
cmp([], [1], [0]).should.equal(false);
});
});
describe('array length mismatch', function () {
it('cmp([], [1], [1, 1]) should equal false', function () {
cmp([], [1], [1, 1]).should.equal(false);
});
});
describe('object key mismatch', function () {
it("cmp({'foo':1}, {'foo':1}, {'bar':1}) should equal false", function () {
cmp({'foo':1}, {'foo':1}, {'bar':1}).should.equal(false);
});
});
describe('object keys not in schema', function () {
it("cmp({'foo':1}, {'foo':1, 'bar':2}, {'foo':1, 'bar':3}) should equal true", function () {
cmp({'foo':1}, {'foo':1, 'bar':2}, {'foo':1, 'bar':3}).should.equal(true);
});
});
});