-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathastBuilder.test.ts
More file actions
214 lines (188 loc) · 5.45 KB
/
astBuilder.test.ts
File metadata and controls
214 lines (188 loc) · 5.45 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
import * as fs from 'fs-extra';
import * as chai from 'chai';
import * as chaiAsPromised from 'chai-as-promised';
import * as sinon from 'sinon';
import AstBuilder from '../../../contextual/astBuilder';
import { QueryWithResults } from '../../../run-queries';
import { CodeQLCliServer } from '../../../cli';
import { DatabaseItem } from '../../../databases';
import { Uri } from 'vscode';
chai.use(chaiAsPromised);
const expect = chai.expect;
/**
*
This test uses an AST generated from this file (already BQRS-decoded in ../data/astBuilder.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, Record<string, unknown> | undefined>;
beforeEach(() => {
mockCli = {
bqrsDecode: sinon.stub().callsFake((_: string, resultSet: 'nodes' | 'edges' | 'graphProperties') => {
return mockDecode(resultSet);
})
} as unknown as CodeQLCliServer;
overrides = {
nodes: undefined,
edges: undefined,
graphProperties: undefined
};
});
it('should build the AST roots', async () => {
const astBuilder = createAstBuilder();
const roots = await astBuilder.getRoots();
const options = { entities: ['id', 'url', 'string'] };
expect(mockCli.bqrsDecode).to.have.been.calledWith('/a/b/c', 'nodes', options);
expect(mockCli.bqrsDecode).to.have.been.calledWith('/a/b/c', 'edges', options);
expect(mockCli.bqrsDecode).to.have.been.calledWith('/a/b/c', 'graphProperties', options);
expect(roots.map(
r => ({ ...r, children: undefined })
)).to.deep.eq(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).to.eq(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: {
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]).to.deep.eq(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).to.eq(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: {
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]).to.deep.eq(child);
});
it('should fail when graphProperties are not correct', async () => {
overrides.graphProperties = {
tuples: [
[
'semmle.graphKind',
'hucairz'
]
]
};
const astBuilder = createAstBuilder();
await expect(astBuilder.getRoots()).to.be.rejectedWith('AST is invalid');
});
function createAstBuilder() {
return new AstBuilder({
query: {
resultsPaths: {
resultsPath: '/a/b/c'
}
}
} as QueryWithResults, mockCli, {} as DatabaseItem, Uri.file(''));
}
function mockDecode(resultSet: 'nodes' | 'edges' | 'graphProperties') {
if (overrides[resultSet]) {
return overrides[resultSet];
}
const mapper = {
nodes: 0,
edges: 1,
graphProperties: 2
};
const index = mapper[resultSet] as number;
if (index >= 0 && index <= 2) {
return JSON.parse(fs.readFileSync(`${__dirname}/../data/astBuilder.json`, 'utf8'))[index];
} else {
throw new Error(`Invalid resultSet: ${resultSet}`);
}
}
});
const expectedRoots = [
{
id: 0,
label: '[TopLevelFunction] int disable_interrupts()',
fileLocation: undefined,
location: {
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: {
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: {
uri: 'file:/opt/src/arch/sandbox/lib/interrupts.c',
startLine: 10,
startColumn: 5,
endLine: 10,
endColumn: 18
},
order: 1,
children: undefined
}
];