This repository was archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathtest-circular.ts
156 lines (148 loc) · 5.53 KB
/
test-circular.ts
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
// Copyright 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import * as assert from 'assert';
import {afterEach, beforeEach, describe, it} from 'mocha';
import {defaultConfig} from '../src/agent/config';
import {Debuglet} from '../src/agent/debuglet';
import * as scanner from '../src/agent/io/scanner';
import * as SourceMapper from '../src/agent/io/sourcemapper';
import * as debugapi from '../src/agent/v8/debugapi';
import consoleLogLevel = require('console-log-level');
import * as stackdriver from '../src/types/stackdriver';
import {Variable} from '../src/types/stackdriver';
import {satisfies} from '../src/agent/util/utils';
// eslint-disable-next-line @typescript-eslint/no-var-requires
const code = require('./test-circular-code.js');
function stateIsClean(api: debugapi.DebugApi): boolean {
assert.strictEqual(
api.numBreakpoints_(),
0,
'there should be no breakpoints active'
);
assert.strictEqual(
api.numListeners_(),
0,
'there should be no listeners active'
);
return true;
}
/**
* Stable object ID was reverted in V8 7.3 (Node 12), so circular objects will
* not work in the near future. For now, we warn if the user specifies
* maxDataSize = 0, as this will cause the app to crash.
*/
const maybeDescribe = satisfies(
process.version,
'>=10 <10.15.3 || >=11 <11.7 || >=12'
)
? describe.skip
: describe;
maybeDescribe(__filename, () => {
const config = Object.assign({}, defaultConfig, {
workingDirectory: __dirname,
forceNewAgent_: true,
});
const logger = consoleLogLevel({
level: Debuglet.logLevelToName(config.logLevel),
});
let api: debugapi.DebugApi;
beforeEach(done => {
if (!api) {
scanner.scan(config.workingDirectory, /.js$/).then(async fileStats => {
assert.strictEqual(fileStats.errors().size, 0);
const jsStats = fileStats.selectStats(/.js$/);
const mapFiles = fileStats.selectFiles(/.map$/, process.cwd());
const mapper = await SourceMapper.create(mapFiles, logger);
api = debugapi.create(
logger,
config,
jsStats,
mapper as SourceMapper.SourceMapper
) as debugapi.DebugApi;
assert.ok(api, 'should be able to create the api');
done();
});
} else {
assert(stateIsClean(api));
done();
}
});
afterEach(() => {
assert(stateIsClean(api));
});
it('Should be able to read the argument and the context', done => {
// TODO: Have this actually implement Breakpoint
const brk: stackdriver.Breakpoint = {
id: 'fake-id-123',
location: {path: 'test-circular-code.js', line: 9},
} as stackdriver.Breakpoint;
api.set(brk, err1 => {
assert.ifError(err1);
api.wait(brk, err2 => {
assert.ifError(err2);
assert.ok(brk.stackFrames.length >= 1);
const locals = [...brk.stackFrames[0].locals].sort((a, b) =>
a.name!.localeCompare(b.name!)
);
const nonStatusVars = brk.variableTable.filter(
entry => entry && !!entry.members
) as Variable[];
const statusVarOffset = brk.variableTable.length - nonStatusVars.length;
assert.ok(locals.length >= 3);
// At least three locals: a, b, and context (alias for this).
// In newer versions of inspector, this appears both as this and
// as context.
const aLocal = locals[0];
const bLocal = locals[1];
const contextLocal = locals[2];
const thisLocal = locals[3]; // Maybe non-existent
assert.ok(aLocal && bLocal && contextLocal);
assert.ok(
!thisLocal || thisLocal.varTableIndex === contextLocal.varTableIndex
);
// All three non-status entries in the varTable correspond to each
// of the locals, respectively.
assert.strictEqual(nonStatusVars.length, 3);
// Every entry has a truthy members field.
assert.ok(!nonStatusVars.some(e => !e.members));
const aVar = nonStatusVars[aLocal.varTableIndex! - statusVarOffset];
const bVar = nonStatusVars[bLocal.varTableIndex! - statusVarOffset];
const thisVar =
nonStatusVars[contextLocal.varTableIndex! - statusVarOffset];
assert.strictEqual(aVar.members!.length, 1); // a
assert.deepStrictEqual(aVar.members![0], bLocal); // a.b
assert.strictEqual(bVar.members!.length, 2); // b
assert.deepStrictEqual(bVar.members![0], aLocal); // b.a
assert.deepStrictEqual(bVar.members![1], {
name: 'c',
varTableIndex: contextLocal.varTableIndex,
});
assert.strictEqual(thisVar.members!.length, 2); // this
assert.deepStrictEqual(thisVar.members![0], {
name: 'x',
varTableIndex: contextLocal.varTableIndex,
}); // this.x
assert.deepStrictEqual(thisVar.members![1], {
name: 'y',
varTableIndex: aLocal.varTableIndex,
}); // this.y
api.clear(brk, err3 => {
assert.ifError(err3);
done();
});
});
process.nextTick(code.foo.bind({}));
});
});
});