-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtypeToTypeAst.test.mjs
83 lines (75 loc) · 2 KB
/
typeToTypeAst.test.mjs
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
import { deepStrictEqual, throws } from "assert";
import typeToTypeAst from "./typeToTypeAst.mjs";
export default (tests) => {
tests.add("`typeToTypeAst` with non-paramter type, non-optional.", () => {
deepStrictEqual(typeToTypeAst({ type: "a" }), {
type: "NameExpression",
name: "a",
});
});
tests.add(
"`typeToTypeAst` with non-parameter type, optional via option.",
() => {
deepStrictEqual(typeToTypeAst({ type: "string", optional: true }), {
type: "OptionalType",
expression: {
type: "NameExpression",
name: "string",
},
});
}
);
tests.add("`typeToTypeAst` with parameter type, non-optional.", () => {
deepStrictEqual(typeToTypeAst({ type: "...*", parameter: true }), {
type: "RestType",
expression: {
type: "AllLiteral",
},
});
});
tests.add(
"`typeToTypeAst` with parameter type, optional via type string.",
() => {
deepStrictEqual(typeToTypeAst({ type: "string=", parameter: true }), {
type: "OptionalType",
expression: {
type: "NameExpression",
name: "string",
},
});
}
);
tests.add(
"`typeToTypeAst` with parameter type, optional via type string and option.",
() => {
deepStrictEqual(
typeToTypeAst({
type: "string=",
parameter: true,
optional: true,
}),
{
type: "OptionalType",
expression: {
type: "NameExpression",
name: "string",
},
}
);
}
);
tests.add(
"`typeToTypeAst` with parameter type, non-optional, event namepath.",
() => {
deepStrictEqual(typeToTypeAst({ type: "A#event:a", parameter: true }), {
type: "NameExpression",
name: "A#event:a",
});
}
);
tests.add("`typeToTypeAst` with invalid type.", () => {
throws(() => {
typeToTypeAst({ type: "**" });
}, new TypeError("Invalid JSDoc type `**`."));
});
};