-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathother-keys-spec.js
executable file
·73 lines (57 loc) · 1.62 KB
/
other-keys-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
const LTT = require('../dist/list-to-tree');
describe('Other keys:', function() {
var tree = null;
var key_id = 'xid';
var key_parent = 'xparent';
var key_child = 'xchild';
beforeEach(function() {
var list = [
{
xid: 1,
xparent: 0
}, {
xid: 2,
xparent: 1
}, {
xid: 3,
xparent: 1
}
];
var ltt = new LTT(list, {
key_id: key_id,
key_parent: key_parent,
key_child: key_child
});
tree = ltt.GetTree();
});
it('It is workly', function() {
expect( tree.length ).toBe(1);
});
it('First node check id', function() {
var firstNode = tree[0];
expect( firstNode[key_id] ).toBe(1);
});
it('First node check parent', function() {
var firstNode = tree[0];
expect( firstNode[key_parent] ).toBe(0);
});
it('First node check child', function() {
var child = tree[0][key_child];
expect( child.length ).toBe(2);
});
it('First child - check id', function() {
var child = tree[0][key_child];
var node = child[0];
expect( node[key_id] ).toBe(2);
});
it('First child - check parent', function() {
var child = tree[0][key_child];
var node = child[0];
expect( node[key_parent] ).toBe(1);
});
it('Child node not have a child key', function() {
var child = tree[0][key_child];
var node = child[0];
expect( 'child' in node ).toBe(false);
});
});