forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-node.js
More file actions
87 lines (77 loc) · 2.26 KB
/
Copy pathcreate-node.js
File metadata and controls
87 lines (77 loc) · 2.26 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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
const { createNode, NODE_TYPES } = require("../../utils/node");
describe("createNode", () => {
it("returns null when contents is undefined", () => {
expect(createNode({ name: "name" })).toBeNull();
});
it("does not return null when contents is null", () => {
expect(
createNode({
name: "name",
path: "path",
contents: null
})
).not.toBe(null);
});
it("returns the expected object when parent is undefined", () => {
const node = createNode({
name: "name",
path: "path",
contents: "contents"
});
expect(node).toEqual({
name: "name",
path: node.path,
contents: "contents",
type: NODE_TYPES.GRIP
});
});
it("returns the expected object when parent is not null", () => {
const root = createNode({ name: "name", contents: null });
const child = createNode({
parent: root,
name: "name",
path: "path",
contents: "contents"
});
expect(child.parent).toEqual(root);
});
it("returns the expected object when type is not undefined", () => {
const root = createNode({ name: "name", contents: null });
const child = createNode({
parent: root,
name: "name",
path: "path",
contents: "contents",
type: NODE_TYPES.BUCKET
});
expect(child.type).toEqual(NODE_TYPES.BUCKET);
});
it("uses the name property for the path when path is not provided", () => {
expect(
createNode({ name: "name", contents: "contents" }).path.toString()
).toBe("Symbol(name)");
});
it("wraps the path in a Symbol when provided", () => {
expect(
createNode({
name: "name",
path: "path",
contents: "contents"
}).path.toString()
).toBe("Symbol(path)");
});
it("uses parent path to compute its path", () => {
const root = createNode({ name: "root", contents: null });
expect(
createNode({
parent: root,
name: "name",
path: "path",
contents: "contents"
}).path.toString()
).toBe("Symbol(root/path)");
});
});