slicejs-cli 3.2.0 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/ISSUE_TEMPLATE/bug_report.md +29 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +25 -0
- package/.github/pull_request_template.md +22 -0
- package/CODE_OF_CONDUCT.md +126 -0
- package/ECOSYSTEM.md +9 -0
- package/LICENSE +21 -0
- package/README.md +171 -375
- package/client.js +664 -563
- package/commands/Print.js +167 -167
- package/commands/Validations.js +103 -103
- package/commands/build/build.js +40 -40
- package/commands/buildProduction/buildProduction.js +579 -579
- package/commands/bundle/bundle.js +235 -235
- package/commands/createComponent/VisualComponentTemplate.js +55 -55
- package/commands/createComponent/createComponent.js +126 -126
- package/commands/deleteComponent/deleteComponent.js +77 -77
- package/commands/doctor/doctor.js +369 -369
- package/commands/getComponent/getComponent.js +747 -747
- package/commands/init/init.js +265 -261
- package/commands/listComponents/listComponents.js +175 -175
- package/commands/startServer/startServer.js +264 -264
- package/commands/startServer/watchServer.js +79 -79
- package/commands/types/types.js +16 -9
- package/commands/utils/LocalCliDelegation.js +53 -53
- package/commands/utils/PathHelper.js +68 -68
- package/commands/utils/VersionChecker.js +167 -167
- package/commands/utils/bundling/BundleGenerator.js +2292 -2292
- package/commands/utils/bundling/DependencyAnalyzer.js +933 -933
- package/commands/utils/updateManager.js +453 -453
- package/package.json +46 -46
- package/post.js +66 -25
- package/tests/bundle-generator.test.js +708 -708
- package/tests/bundle-v2-register-output.test.js +470 -470
- package/tests/client-launcher-contract.test.js +211 -211
- package/tests/client-update-flow-contract.test.js +272 -272
- package/tests/dependency-analyzer.test.js +24 -24
- package/tests/local-cli-delegation.test.js +79 -79
- package/tests/postinstall-command.test.js +72 -0
- package/tests/update-manager-notifications.test.js +88 -88
- package/refactor.md +0 -271
|
@@ -1,272 +1,272 @@
|
|
|
1
|
-
import { test } from 'node:test';
|
|
2
|
-
import assert from 'node:assert/strict';
|
|
3
|
-
import fs from 'node:fs';
|
|
4
|
-
import path from 'node:path';
|
|
5
|
-
import { fileURLToPath } from 'node:url';
|
|
6
|
-
import { parse } from '@babel/parser';
|
|
7
|
-
|
|
8
|
-
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
9
|
-
const clientPath = path.join(__dirname, '..', 'client.js');
|
|
10
|
-
const clientSource = fs.readFileSync(clientPath, 'utf-8');
|
|
11
|
-
const ast = parse(clientSource, {
|
|
12
|
-
sourceType: 'module',
|
|
13
|
-
errorRecovery: true,
|
|
14
|
-
loc: true,
|
|
15
|
-
ranges: true
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
function lineOf(node) {
|
|
19
|
-
return node && node.loc && node.loc.start ? node.loc.start.line : null;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
function walk(node, visit) {
|
|
23
|
-
if (!node || typeof node !== 'object') {
|
|
24
|
-
return;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
visit(node);
|
|
28
|
-
|
|
29
|
-
for (const value of Object.values(node)) {
|
|
30
|
-
if (Array.isArray(value)) {
|
|
31
|
-
for (const item of value) {
|
|
32
|
-
walk(item, visit);
|
|
33
|
-
}
|
|
34
|
-
continue;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
walk(value, visit);
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
function isMethodCall(node, methodName) {
|
|
42
|
-
return (
|
|
43
|
-
node &&
|
|
44
|
-
node.type === 'CallExpression' &&
|
|
45
|
-
node.callee &&
|
|
46
|
-
node.callee.type === 'MemberExpression' &&
|
|
47
|
-
node.callee.property &&
|
|
48
|
-
node.callee.property.type === 'Identifier' &&
|
|
49
|
-
node.callee.property.name === methodName
|
|
50
|
-
);
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
function isCommandUpdateExpression(node) {
|
|
54
|
-
if (!node || node.type !== 'CallExpression') {
|
|
55
|
-
return false;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
if (
|
|
59
|
-
node.callee &&
|
|
60
|
-
node.callee.type === 'MemberExpression' &&
|
|
61
|
-
node.callee.property &&
|
|
62
|
-
node.callee.property.type === 'Identifier' &&
|
|
63
|
-
node.callee.property.name === 'command' &&
|
|
64
|
-
node.arguments[0] &&
|
|
65
|
-
node.arguments[0].type === 'StringLiteral' &&
|
|
66
|
-
node.arguments[0].value === 'update'
|
|
67
|
-
) {
|
|
68
|
-
return true;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
if (node.callee && node.callee.type === 'MemberExpression') {
|
|
72
|
-
return isCommandUpdateExpression(node.callee.object);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
return false;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
function getRunWithVersionCheckNode() {
|
|
79
|
-
let foundNode = null;
|
|
80
|
-
|
|
81
|
-
walk(ast, (node) => {
|
|
82
|
-
if (
|
|
83
|
-
node.type === 'FunctionDeclaration' &&
|
|
84
|
-
node.id &&
|
|
85
|
-
node.id.type === 'Identifier' &&
|
|
86
|
-
node.id.name === 'runWithVersionCheck'
|
|
87
|
-
) {
|
|
88
|
-
foundNode = node;
|
|
89
|
-
return;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
if (node.type !== 'VariableDeclarator') {
|
|
93
|
-
return;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
if (!node.id || node.id.type !== 'Identifier' || node.id.name !== 'runWithVersionCheck') {
|
|
97
|
-
return;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
if (
|
|
101
|
-
node.init &&
|
|
102
|
-
(node.init.type === 'ArrowFunctionExpression' || node.init.type === 'FunctionExpression')
|
|
103
|
-
) {
|
|
104
|
-
foundNode = node.init;
|
|
105
|
-
}
|
|
106
|
-
});
|
|
107
|
-
|
|
108
|
-
return foundNode;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
function getFunctionBodyNode(fnNode) {
|
|
112
|
-
if (!fnNode) {
|
|
113
|
-
return null;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
if (fnNode.type === 'FunctionDeclaration' || fnNode.type === 'FunctionExpression' || fnNode.type === 'ArrowFunctionExpression') {
|
|
117
|
-
return fnNode.body;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
return null;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
function getFunctionLikeByName(name) {
|
|
124
|
-
let foundNode = null;
|
|
125
|
-
|
|
126
|
-
walk(ast, (node) => {
|
|
127
|
-
if (
|
|
128
|
-
node.type === 'FunctionDeclaration' &&
|
|
129
|
-
node.id &&
|
|
130
|
-
node.id.type === 'Identifier' &&
|
|
131
|
-
node.id.name === name
|
|
132
|
-
) {
|
|
133
|
-
foundNode = node;
|
|
134
|
-
return;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
if (node.type !== 'VariableDeclarator') {
|
|
138
|
-
return;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
if (!node.id || node.id.type !== 'Identifier' || node.id.name !== name) {
|
|
142
|
-
return;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
if (
|
|
146
|
-
node.init &&
|
|
147
|
-
(node.init.type === 'ArrowFunctionExpression' || node.init.type === 'FunctionExpression')
|
|
148
|
-
) {
|
|
149
|
-
foundNode = node.init;
|
|
150
|
-
}
|
|
151
|
-
});
|
|
152
|
-
|
|
153
|
-
return foundNode;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
test('runWithVersionCheck uses non-blocking update notifications', () => {
|
|
157
|
-
const runWithVersionCheckNode = getRunWithVersionCheckNode();
|
|
158
|
-
const runWithVersionCheckBody = getFunctionBodyNode(runWithVersionCheckNode);
|
|
159
|
-
|
|
160
|
-
assert.ok(
|
|
161
|
-
runWithVersionCheckNode,
|
|
162
|
-
'runWithVersionCheck function should exist as a declaration or function-valued variable'
|
|
163
|
-
);
|
|
164
|
-
assert.ok(runWithVersionCheckBody, 'runWithVersionCheck should have a traversable function body');
|
|
165
|
-
|
|
166
|
-
let hasNotifyCall = false;
|
|
167
|
-
let hasAwaitedNotifyCall = false;
|
|
168
|
-
let notifyCallLine = null;
|
|
169
|
-
let hasPromptCall = false;
|
|
170
|
-
let promptCallLine = null;
|
|
171
|
-
|
|
172
|
-
walk(runWithVersionCheckBody, (node) => {
|
|
173
|
-
if (isMethodCall(node, 'notifyAvailableUpdates')) {
|
|
174
|
-
hasNotifyCall = true;
|
|
175
|
-
notifyCallLine = notifyCallLine ?? lineOf(node);
|
|
176
|
-
}
|
|
177
|
-
if (
|
|
178
|
-
node.type === 'AwaitExpression' &&
|
|
179
|
-
isMethodCall(node.argument, 'notifyAvailableUpdates')
|
|
180
|
-
) {
|
|
181
|
-
hasAwaitedNotifyCall = true;
|
|
182
|
-
}
|
|
183
|
-
if (isMethodCall(node, 'checkAndPromptUpdates')) {
|
|
184
|
-
hasPromptCall = true;
|
|
185
|
-
promptCallLine = promptCallLine ?? lineOf(node);
|
|
186
|
-
}
|
|
187
|
-
});
|
|
188
|
-
|
|
189
|
-
assert.equal(
|
|
190
|
-
hasNotifyCall,
|
|
191
|
-
true,
|
|
192
|
-
`runWithVersionCheck must call updateManager.notifyAvailableUpdates() (found at line ${notifyCallLine ?? 'unknown'})`
|
|
193
|
-
);
|
|
194
|
-
assert.equal(
|
|
195
|
-
hasAwaitedNotifyCall,
|
|
196
|
-
false,
|
|
197
|
-
`runWithVersionCheck should fire-and-forget notifyAvailableUpdates() without await (notify call line ${notifyCallLine ?? 'unknown'})`
|
|
198
|
-
);
|
|
199
|
-
assert.equal(
|
|
200
|
-
hasPromptCall,
|
|
201
|
-
false,
|
|
202
|
-
`runWithVersionCheck must not call updateManager.checkAndPromptUpdates() (found at line ${promptCallLine ?? 'unknown'})`
|
|
203
|
-
);
|
|
204
|
-
});
|
|
205
|
-
|
|
206
|
-
test('update command remains explicitly interactive', () => {
|
|
207
|
-
let foundAwaitedInteractiveUpdateAction = false;
|
|
208
|
-
let updateActionHandlerLine = null;
|
|
209
|
-
let relatedPromptCallLine = null;
|
|
210
|
-
let handlerReferenceName = null;
|
|
211
|
-
|
|
212
|
-
walk(ast, (node) => {
|
|
213
|
-
if (
|
|
214
|
-
node.type === 'CallExpression' &&
|
|
215
|
-
node.callee &&
|
|
216
|
-
node.callee.type === 'MemberExpression' &&
|
|
217
|
-
node.callee.property &&
|
|
218
|
-
node.callee.property.type === 'Identifier' &&
|
|
219
|
-
node.callee.property.name === 'action' &&
|
|
220
|
-
isCommandUpdateExpression(node.callee.object)
|
|
221
|
-
) {
|
|
222
|
-
const actionHandler = node.arguments[0];
|
|
223
|
-
if (!actionHandler) {
|
|
224
|
-
return;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
let resolvedHandler = null;
|
|
228
|
-
|
|
229
|
-
if (actionHandler.type === 'Identifier') {
|
|
230
|
-
handlerReferenceName = actionHandler.name;
|
|
231
|
-
resolvedHandler = getFunctionLikeByName(actionHandler.name);
|
|
232
|
-
} else if (
|
|
233
|
-
actionHandler.type === 'ArrowFunctionExpression' ||
|
|
234
|
-
actionHandler.type === 'FunctionExpression'
|
|
235
|
-
) {
|
|
236
|
-
resolvedHandler = actionHandler;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
if (!resolvedHandler || resolvedHandler.async !== true) {
|
|
240
|
-
return;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
const resolvedBody = getFunctionBodyNode(resolvedHandler);
|
|
244
|
-
if (!resolvedBody) {
|
|
245
|
-
return;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
updateActionHandlerLine = updateActionHandlerLine ?? lineOf(resolvedHandler);
|
|
249
|
-
|
|
250
|
-
walk(resolvedBody, (actionNode) => {
|
|
251
|
-
if (isMethodCall(actionNode, 'checkAndPromptUpdates')) {
|
|
252
|
-
relatedPromptCallLine = relatedPromptCallLine ?? lineOf(actionNode);
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
if (
|
|
256
|
-
actionNode.type !== 'AwaitExpression' ||
|
|
257
|
-
!isMethodCall(actionNode.argument, 'checkAndPromptUpdates')
|
|
258
|
-
) {
|
|
259
|
-
return;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
foundAwaitedInteractiveUpdateAction = true;
|
|
263
|
-
});
|
|
264
|
-
}
|
|
265
|
-
});
|
|
266
|
-
|
|
267
|
-
assert.equal(
|
|
268
|
-
foundAwaitedInteractiveUpdateAction,
|
|
269
|
-
true,
|
|
270
|
-
`update command action must await checkAndPromptUpdates(...) (action line ${updateActionHandlerLine ?? 'unknown'}, related call line ${relatedPromptCallLine ?? 'unknown'}${handlerReferenceName ? `, handler reference ${handlerReferenceName}` : ''})`
|
|
271
|
-
);
|
|
272
|
-
});
|
|
1
|
+
import { test } from 'node:test';
|
|
2
|
+
import assert from 'node:assert/strict';
|
|
3
|
+
import fs from 'node:fs';
|
|
4
|
+
import path from 'node:path';
|
|
5
|
+
import { fileURLToPath } from 'node:url';
|
|
6
|
+
import { parse } from '@babel/parser';
|
|
7
|
+
|
|
8
|
+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
9
|
+
const clientPath = path.join(__dirname, '..', 'client.js');
|
|
10
|
+
const clientSource = fs.readFileSync(clientPath, 'utf-8');
|
|
11
|
+
const ast = parse(clientSource, {
|
|
12
|
+
sourceType: 'module',
|
|
13
|
+
errorRecovery: true,
|
|
14
|
+
loc: true,
|
|
15
|
+
ranges: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
function lineOf(node) {
|
|
19
|
+
return node && node.loc && node.loc.start ? node.loc.start.line : null;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function walk(node, visit) {
|
|
23
|
+
if (!node || typeof node !== 'object') {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
visit(node);
|
|
28
|
+
|
|
29
|
+
for (const value of Object.values(node)) {
|
|
30
|
+
if (Array.isArray(value)) {
|
|
31
|
+
for (const item of value) {
|
|
32
|
+
walk(item, visit);
|
|
33
|
+
}
|
|
34
|
+
continue;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
walk(value, visit);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function isMethodCall(node, methodName) {
|
|
42
|
+
return (
|
|
43
|
+
node &&
|
|
44
|
+
node.type === 'CallExpression' &&
|
|
45
|
+
node.callee &&
|
|
46
|
+
node.callee.type === 'MemberExpression' &&
|
|
47
|
+
node.callee.property &&
|
|
48
|
+
node.callee.property.type === 'Identifier' &&
|
|
49
|
+
node.callee.property.name === methodName
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function isCommandUpdateExpression(node) {
|
|
54
|
+
if (!node || node.type !== 'CallExpression') {
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (
|
|
59
|
+
node.callee &&
|
|
60
|
+
node.callee.type === 'MemberExpression' &&
|
|
61
|
+
node.callee.property &&
|
|
62
|
+
node.callee.property.type === 'Identifier' &&
|
|
63
|
+
node.callee.property.name === 'command' &&
|
|
64
|
+
node.arguments[0] &&
|
|
65
|
+
node.arguments[0].type === 'StringLiteral' &&
|
|
66
|
+
node.arguments[0].value === 'update'
|
|
67
|
+
) {
|
|
68
|
+
return true;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (node.callee && node.callee.type === 'MemberExpression') {
|
|
72
|
+
return isCommandUpdateExpression(node.callee.object);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
return false;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function getRunWithVersionCheckNode() {
|
|
79
|
+
let foundNode = null;
|
|
80
|
+
|
|
81
|
+
walk(ast, (node) => {
|
|
82
|
+
if (
|
|
83
|
+
node.type === 'FunctionDeclaration' &&
|
|
84
|
+
node.id &&
|
|
85
|
+
node.id.type === 'Identifier' &&
|
|
86
|
+
node.id.name === 'runWithVersionCheck'
|
|
87
|
+
) {
|
|
88
|
+
foundNode = node;
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
if (node.type !== 'VariableDeclarator') {
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
if (!node.id || node.id.type !== 'Identifier' || node.id.name !== 'runWithVersionCheck') {
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
if (
|
|
101
|
+
node.init &&
|
|
102
|
+
(node.init.type === 'ArrowFunctionExpression' || node.init.type === 'FunctionExpression')
|
|
103
|
+
) {
|
|
104
|
+
foundNode = node.init;
|
|
105
|
+
}
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
return foundNode;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function getFunctionBodyNode(fnNode) {
|
|
112
|
+
if (!fnNode) {
|
|
113
|
+
return null;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
if (fnNode.type === 'FunctionDeclaration' || fnNode.type === 'FunctionExpression' || fnNode.type === 'ArrowFunctionExpression') {
|
|
117
|
+
return fnNode.body;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
return null;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
function getFunctionLikeByName(name) {
|
|
124
|
+
let foundNode = null;
|
|
125
|
+
|
|
126
|
+
walk(ast, (node) => {
|
|
127
|
+
if (
|
|
128
|
+
node.type === 'FunctionDeclaration' &&
|
|
129
|
+
node.id &&
|
|
130
|
+
node.id.type === 'Identifier' &&
|
|
131
|
+
node.id.name === name
|
|
132
|
+
) {
|
|
133
|
+
foundNode = node;
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
if (node.type !== 'VariableDeclarator') {
|
|
138
|
+
return;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
if (!node.id || node.id.type !== 'Identifier' || node.id.name !== name) {
|
|
142
|
+
return;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if (
|
|
146
|
+
node.init &&
|
|
147
|
+
(node.init.type === 'ArrowFunctionExpression' || node.init.type === 'FunctionExpression')
|
|
148
|
+
) {
|
|
149
|
+
foundNode = node.init;
|
|
150
|
+
}
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
return foundNode;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
test('runWithVersionCheck uses non-blocking update notifications', () => {
|
|
157
|
+
const runWithVersionCheckNode = getRunWithVersionCheckNode();
|
|
158
|
+
const runWithVersionCheckBody = getFunctionBodyNode(runWithVersionCheckNode);
|
|
159
|
+
|
|
160
|
+
assert.ok(
|
|
161
|
+
runWithVersionCheckNode,
|
|
162
|
+
'runWithVersionCheck function should exist as a declaration or function-valued variable'
|
|
163
|
+
);
|
|
164
|
+
assert.ok(runWithVersionCheckBody, 'runWithVersionCheck should have a traversable function body');
|
|
165
|
+
|
|
166
|
+
let hasNotifyCall = false;
|
|
167
|
+
let hasAwaitedNotifyCall = false;
|
|
168
|
+
let notifyCallLine = null;
|
|
169
|
+
let hasPromptCall = false;
|
|
170
|
+
let promptCallLine = null;
|
|
171
|
+
|
|
172
|
+
walk(runWithVersionCheckBody, (node) => {
|
|
173
|
+
if (isMethodCall(node, 'notifyAvailableUpdates')) {
|
|
174
|
+
hasNotifyCall = true;
|
|
175
|
+
notifyCallLine = notifyCallLine ?? lineOf(node);
|
|
176
|
+
}
|
|
177
|
+
if (
|
|
178
|
+
node.type === 'AwaitExpression' &&
|
|
179
|
+
isMethodCall(node.argument, 'notifyAvailableUpdates')
|
|
180
|
+
) {
|
|
181
|
+
hasAwaitedNotifyCall = true;
|
|
182
|
+
}
|
|
183
|
+
if (isMethodCall(node, 'checkAndPromptUpdates')) {
|
|
184
|
+
hasPromptCall = true;
|
|
185
|
+
promptCallLine = promptCallLine ?? lineOf(node);
|
|
186
|
+
}
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
assert.equal(
|
|
190
|
+
hasNotifyCall,
|
|
191
|
+
true,
|
|
192
|
+
`runWithVersionCheck must call updateManager.notifyAvailableUpdates() (found at line ${notifyCallLine ?? 'unknown'})`
|
|
193
|
+
);
|
|
194
|
+
assert.equal(
|
|
195
|
+
hasAwaitedNotifyCall,
|
|
196
|
+
false,
|
|
197
|
+
`runWithVersionCheck should fire-and-forget notifyAvailableUpdates() without await (notify call line ${notifyCallLine ?? 'unknown'})`
|
|
198
|
+
);
|
|
199
|
+
assert.equal(
|
|
200
|
+
hasPromptCall,
|
|
201
|
+
false,
|
|
202
|
+
`runWithVersionCheck must not call updateManager.checkAndPromptUpdates() (found at line ${promptCallLine ?? 'unknown'})`
|
|
203
|
+
);
|
|
204
|
+
});
|
|
205
|
+
|
|
206
|
+
test('update command remains explicitly interactive', () => {
|
|
207
|
+
let foundAwaitedInteractiveUpdateAction = false;
|
|
208
|
+
let updateActionHandlerLine = null;
|
|
209
|
+
let relatedPromptCallLine = null;
|
|
210
|
+
let handlerReferenceName = null;
|
|
211
|
+
|
|
212
|
+
walk(ast, (node) => {
|
|
213
|
+
if (
|
|
214
|
+
node.type === 'CallExpression' &&
|
|
215
|
+
node.callee &&
|
|
216
|
+
node.callee.type === 'MemberExpression' &&
|
|
217
|
+
node.callee.property &&
|
|
218
|
+
node.callee.property.type === 'Identifier' &&
|
|
219
|
+
node.callee.property.name === 'action' &&
|
|
220
|
+
isCommandUpdateExpression(node.callee.object)
|
|
221
|
+
) {
|
|
222
|
+
const actionHandler = node.arguments[0];
|
|
223
|
+
if (!actionHandler) {
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
let resolvedHandler = null;
|
|
228
|
+
|
|
229
|
+
if (actionHandler.type === 'Identifier') {
|
|
230
|
+
handlerReferenceName = actionHandler.name;
|
|
231
|
+
resolvedHandler = getFunctionLikeByName(actionHandler.name);
|
|
232
|
+
} else if (
|
|
233
|
+
actionHandler.type === 'ArrowFunctionExpression' ||
|
|
234
|
+
actionHandler.type === 'FunctionExpression'
|
|
235
|
+
) {
|
|
236
|
+
resolvedHandler = actionHandler;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
if (!resolvedHandler || resolvedHandler.async !== true) {
|
|
240
|
+
return;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
const resolvedBody = getFunctionBodyNode(resolvedHandler);
|
|
244
|
+
if (!resolvedBody) {
|
|
245
|
+
return;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
updateActionHandlerLine = updateActionHandlerLine ?? lineOf(resolvedHandler);
|
|
249
|
+
|
|
250
|
+
walk(resolvedBody, (actionNode) => {
|
|
251
|
+
if (isMethodCall(actionNode, 'checkAndPromptUpdates')) {
|
|
252
|
+
relatedPromptCallLine = relatedPromptCallLine ?? lineOf(actionNode);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
if (
|
|
256
|
+
actionNode.type !== 'AwaitExpression' ||
|
|
257
|
+
!isMethodCall(actionNode.argument, 'checkAndPromptUpdates')
|
|
258
|
+
) {
|
|
259
|
+
return;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
foundAwaitedInteractiveUpdateAction = true;
|
|
263
|
+
});
|
|
264
|
+
}
|
|
265
|
+
});
|
|
266
|
+
|
|
267
|
+
assert.equal(
|
|
268
|
+
foundAwaitedInteractiveUpdateAction,
|
|
269
|
+
true,
|
|
270
|
+
`update command action must await checkAndPromptUpdates(...) (action line ${updateActionHandlerLine ?? 'unknown'}, related call line ${relatedPromptCallLine ?? 'unknown'}${handlerReferenceName ? `, handler reference ${handlerReferenceName}` : ''})`
|
|
271
|
+
);
|
|
272
|
+
});
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { test } from 'node:test';
|
|
2
|
-
import assert from 'node:assert/strict';
|
|
3
|
-
import DependencyAnalyzer from '../commands/utils/bundling/DependencyAnalyzer.js';
|
|
4
|
-
|
|
5
|
-
test('parseComponentsConfig returns components map', () => {
|
|
6
|
-
// Arrange
|
|
7
|
-
const analyzer = new DependencyAnalyzer(import.meta.url);
|
|
8
|
-
const content = `const components = {"Button": "Visual", "FetchManager": "Service"};\nexport default components;`;
|
|
9
|
-
|
|
10
|
-
// Act
|
|
11
|
-
const result = analyzer.parseComponentsConfig(content);
|
|
12
|
-
|
|
13
|
-
// Assert
|
|
14
|
-
assert.deepEqual(result, { Button: 'Visual', FetchManager: 'Service' });
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
test('parseComponentsConfig throws for invalid config', () => {
|
|
18
|
-
// Arrange
|
|
19
|
-
const analyzer = new DependencyAnalyzer(import.meta.url);
|
|
20
|
-
const content = `const notComponents = {"Button": "Visual"};`;
|
|
21
|
-
|
|
22
|
-
// Act / Assert
|
|
23
|
-
assert.throws(() => analyzer.parseComponentsConfig(content), /components object not found/);
|
|
24
|
-
});
|
|
1
|
+
import { test } from 'node:test';
|
|
2
|
+
import assert from 'node:assert/strict';
|
|
3
|
+
import DependencyAnalyzer from '../commands/utils/bundling/DependencyAnalyzer.js';
|
|
4
|
+
|
|
5
|
+
test('parseComponentsConfig returns components map', () => {
|
|
6
|
+
// Arrange
|
|
7
|
+
const analyzer = new DependencyAnalyzer(import.meta.url);
|
|
8
|
+
const content = `const components = {"Button": "Visual", "FetchManager": "Service"};\nexport default components;`;
|
|
9
|
+
|
|
10
|
+
// Act
|
|
11
|
+
const result = analyzer.parseComponentsConfig(content);
|
|
12
|
+
|
|
13
|
+
// Assert
|
|
14
|
+
assert.deepEqual(result, { Button: 'Visual', FetchManager: 'Service' });
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
test('parseComponentsConfig throws for invalid config', () => {
|
|
18
|
+
// Arrange
|
|
19
|
+
const analyzer = new DependencyAnalyzer(import.meta.url);
|
|
20
|
+
const content = `const notComponents = {"Button": "Visual"};`;
|
|
21
|
+
|
|
22
|
+
// Act / Assert
|
|
23
|
+
assert.throws(() => analyzer.parseComponentsConfig(content), /components object not found/);
|
|
24
|
+
});
|