-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.test.js
138 lines (129 loc) · 2.88 KB
/
index.test.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
const assert = require('assert');
const { assign } = require('..');
const test = (description, example) => {
const log = (obj) => {
if (obj) console.log(obj);
console.log('\u001B[32m✓\u001B[39m');
};
console.log(description);
return {
equals(expected) {
assert.deepStrictEqual(example, expected);
log(expected);
},
fails() {
assert.throws(example);
log();
},
};
};
(() => {
const target = {
boolean: true,
string: 'abc',
object: { number: 0, any: 0 },
};
const array = ['34', 'abc', [14, 2]];
const expected = {
boolean: '34',
string: 'abc',
object: { number: 14, any: 2 },
};
assign(target, array);
test('Assigns array to object', target).equals(expected);
})();
(() => {
const target = ['34', 'abc', [14, 2]];
const source = {
boolean: true,
string: 'abc',
object: { number: 0, any: 0 },
};
const expected = [true, 'abc', [0, 0]];
assign(target, source);
test('Assigns object to array', target).equals(expected);
})();
(() => {
const target = {
boolean: true,
string: 'abc',
object: { number: 0, any: 0 },
};
const source = {
boolean: '34',
string: 4,
object: { number: 14, any: null },
};
const expected = {
boolean: '34',
string: 4,
object: { number: 14, any: null },
};
assign(target, source);
test('Assigns object to object', target).equals(expected);
})();
(() => {
const target = {};
const array = ['34', 4, [14, null]];
const expected = {};
assign(target, array);
test('Assign array to empty object results in empty object', target).equals(
expected
);
})();
(() => {
const target = [];
const source = {
boolean: true,
string: 'abc',
object: { number: 0, any: 0 },
};
const expected = [true, 'abc', { number: 0, any: 0 }];
assign(target, source);
test('Assigns to empty array', target).equals(expected);
})();
(() => {
const target = {};
const source = {
boolean: true,
string: 'abc',
object: { number: 0, any: 0 },
};
assign(target, source);
test('Assigns to empty object', target).equals(source);
})();
(() => {
const target = {
boolean: true,
string: 'abc',
object: { number: 0, null: null },
};
const source = { a: false, b: '1', c: { a: 0, b: 1 } };
const expected = {
a: false,
b: '1',
c: { a: 0, b: 1 },
boolean: true,
string: 'abc',
object: { number: 0, null: null },
};
assign(target, source);
test('Merge different object with differing property names', target).equals(
expected
);
})();
(() => {
const target = {
boolean: true,
string: [],
object: { number: 0, any: 0 },
};
const array = [false, { boolean: true, a: 3 }, [0, 3]];
const expected = {
boolean: false,
string: [true, 3],
object: { number: 0, any: 3 },
};
assign(target, array);
test('Assigns mixed', target).equals(expected);
})();