-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.spec.js
90 lines (75 loc) · 1.68 KB
/
index.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
const test = require('kludjs');
const mk = require('./index');
test('should reduce input string by flow', function () {
const actual = mk.flow(
mk.joinPath,
mk.upper,
mk.snake,
mk.prefix('PREFIX::')
)('strange-String', 'some.path.to');
const expected = 'PREFIX::SOME_PATH_TO_STRANGE_STRING';
ok(eq(actual, expected), 'converted correctly');
});
test('should create Symbol', function () {
const actual = mk.flow(mk.joinPath, Symbol)('someKey', 'some.path.to');
const expected = Symbol('some.path.to.someKey');
ok(eq(typeof actual, 'symbol'), 'it is symbol');
ok(eq(actual.toString(), expected.toString()), 'the key is correct');
});
test('should mirror keys of nested object', () => {
const actual = mk({
a: 'a',
b: null,
nested: {
x: 'x',
y: null,
},
});
const expected = {
a: 'a',
b: 'b',
nested: {
x: 'x',
y: 'nested.y',
},
};
ok(eq(actual, expected), 'was mirrored correctly');
});
test('should mirror keys using default prefix flow', () => {
const actual = mk({
a: 'a',
b: null,
nested: {
x: 'x',
y: null,
},
}, 'PREFIX::');
const expected = {
a: 'a',
b: 'PREFIX::b',
nested: {
x: 'x',
y: 'PREFIX::nested.y',
},
};
ok(eq(actual, expected), 'was mirrored correctly');
});
test('should mirror using custom flow', () => {
const actual = mk({
a: 'a',
b: null,
nested: {
x: 'x',
y: null,
},
}, mk.flow(mk.joinPath, key => key.replace('.', '-')));
const expected = {
a: 'a',
b: 'b',
nested: {
x: 'x',
y: 'nested-y',
},
};
ok(eq(actual, expected), 'was mirrored correctly');
});