-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathast-builder.test.ts
More file actions
226 lines (202 loc) · 5.82 KB
/
ast-builder.test.ts
File metadata and controls
226 lines (202 loc) · 5.82 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
import { readFileSync } from "fs-extra";
import type { CodeQLCliServer } from "../../../../../src/codeql-cli/cli";
import { Uri } from "vscode";
import { mockDatabaseItem, mockedObject } from "../../../utils/mocking.helpers";
import path from "path";
import { AstBuilder } from "../../../../../src/language-support";
import type { DecodedBqrsChunk } from "../../../../../src/common/bqrs-cli-types";
/**
*
This test uses an AST generated from this file (already BQRS-decoded in ../data/language-support/ast-viewer/ast-builder.json):
#include <common.h>
int interrupt_init(void)
{
return 0;
}
void enable_interrupts(void)
{
return;
}
int disable_interrupts(void)
{
return 0;
}
*/
describe("AstBuilder", () => {
let mockCli: CodeQLCliServer;
let overrides: Record<string, DecodedBqrsChunk | undefined>;
beforeEach(() => {
mockCli = mockedObject<CodeQLCliServer>({
bqrsDecode: jest
.fn()
.mockImplementation(
(_: string, resultSet: "nodes" | "edges" | "graphProperties") => {
return mockDecode(resultSet);
},
),
});
overrides = {
nodes: undefined,
edges: undefined,
graphProperties: undefined,
};
});
it("should build the AST roots", async () => {
const astBuilder = createAstBuilder();
const roots = await astBuilder.getRoots();
const bqrsPath = path.normalize("/a/b/c/results.bqrs");
const options = { entities: ["id", "url", "string"] };
expect(mockCli.bqrsDecode).toHaveBeenCalledWith(bqrsPath, "nodes", options);
expect(mockCli.bqrsDecode).toHaveBeenCalledWith(bqrsPath, "edges", options);
expect(mockCli.bqrsDecode).toHaveBeenCalledWith(
bqrsPath,
"graphProperties",
options,
);
expect(roots.map((r) => ({ ...r, children: undefined }))).toEqual(
expectedRoots,
);
});
it("should build an AST child without edge label", async () => {
// just test one of the children to make sure that the structure is right
// this label should only come from the node, not the edge
const astBuilder = createAstBuilder();
const roots = await astBuilder.getRoots();
expect(roots[0].children[0].parent).toBe(roots[0]);
// break the recursion
(roots[0].children[0] as any).parent = undefined;
(roots[0].children[0] as any).children = undefined;
const child = {
children: undefined,
fileLocation: undefined,
id: 26359,
label: "params",
location: {
type: "lineColumnLocation",
endColumn: 22,
endLine: 19,
startColumn: 5,
startLine: 19,
uri: "file:/opt/src/arch/sandbox/lib/interrupts.c",
},
order: 0,
parent: undefined,
};
expect(roots[0].children[0]).toEqual(child);
});
it("should build an AST child with edge label", async () => {
// just test one of the children to make sure that the structure is right
// this label should only come from both the node and the edge
const astBuilder = createAstBuilder();
const roots = await astBuilder.getRoots();
expect(roots[0].children[1].parent).toBe(roots[0]);
// break the recursion
(roots[0].children[1] as any).parent = undefined;
(roots[0].children[1] as any).children = undefined;
const child = {
children: undefined,
fileLocation: undefined,
id: 26367,
label: "body: [Block] { ... }",
location: {
type: "lineColumnLocation",
endColumn: 1,
endLine: 22,
startColumn: 1,
startLine: 20,
uri: "file:/opt/src/arch/sandbox/lib/interrupts.c",
},
order: 2,
parent: undefined,
};
expect(roots[0].children[1]).toEqual(child);
});
it("should fail when graphProperties are not correct", async () => {
overrides.graphProperties = {
tuples: [["semmle.graphKind", "hucairz"]],
columns: [],
};
const astBuilder = createAstBuilder();
await expect(astBuilder.getRoots()).rejects.toThrow("AST is invalid");
});
function createAstBuilder() {
return new AstBuilder(
path.normalize("/a/b/c/results.bqrs"),
mockCli,
mockDatabaseItem({
resolveSourceFile: undefined,
}),
Uri.file(""),
);
}
async function mockDecode(
resultSet: "nodes" | "edges" | "graphProperties",
): Promise<DecodedBqrsChunk> {
if (overrides[resultSet]) {
return overrides[resultSet];
}
const mapper = {
nodes: 0,
edges: 1,
graphProperties: 2,
};
const index = mapper[resultSet];
if (index >= 0 && index <= 2) {
return JSON.parse(
readFileSync(
`${__dirname}/../../data/language-support/ast-viewer/ast-builder.json`,
"utf8",
),
)[index] as DecodedBqrsChunk;
} else {
throw new Error(`Invalid resultSet: ${resultSet}`);
}
}
});
const expectedRoots = [
{
id: 0,
label: "[TopLevelFunction] int disable_interrupts()",
fileLocation: undefined,
location: {
type: "lineColumnLocation",
uri: "file:/opt/src/arch/sandbox/lib/interrupts.c",
startLine: 19,
startColumn: 5,
endLine: 19,
endColumn: 22,
},
order: 3,
children: undefined,
},
{
id: 26363,
label: "[TopLevelFunction] void enable_interrupts()",
fileLocation: undefined,
location: {
type: "lineColumnLocation",
uri: "file:/opt/src/arch/sandbox/lib/interrupts.c",
startLine: 15,
startColumn: 6,
endLine: 15,
endColumn: 22,
},
order: 2,
children: undefined,
},
{
id: 26364,
label: "[TopLevelFunction] int interrupt_init()",
fileLocation: undefined,
location: {
type: "lineColumnLocation",
uri: "file:/opt/src/arch/sandbox/lib/interrupts.c",
startLine: 10,
startColumn: 5,
endLine: 10,
endColumn: 18,
},
order: 1,
children: undefined,
},
];