forked from invertase/dart_custom_lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli_process_test.dart
286 lines (249 loc) · 8.34 KB
/
cli_process_test.dart
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
import 'dart:convert';
import 'dart:io';
import 'package:custom_lint/src/package_utils.dart';
import 'package:test/test.dart';
import 'cli_test.dart';
import 'create_project.dart';
import 'peer_project_meta.dart';
import 'src/workspace_test.dart';
String trimDependencyOverridesWarning(Object? input) {
final string = input.toString();
if (string
.startsWith('Warning: You are using these overridden dependencies:')) {
return string.split('\n').skip(3).join('\n');
}
return string;
}
void main() {
test('Exposes the Pubspec in CustomLintContext', () async {
final workspace = createTemporaryDirectory();
final plugin = createPlugin(
name: 'test_lint',
main: createPluginSource([
TestLintRule(
code: 'hello_world',
message: 'Hello world',
onRun:
r"print('${context.pubspec.name} ${context.pubspec.dependencies.keys}');",
),
]),
);
createLintUsage(
parent: workspace,
source: {'lib/main.dart': 'void fn() {}'},
plugins: {'test_lint': plugin.uri},
name: 'test_app',
);
createLintUsage(
parent: workspace,
source: {'lib/main2.dart': 'void fn() {}'},
plugins: {'test_lint': plugin.uri},
name: 'test_app2',
);
final process = Process.runSync(
'dart',
[customLintBinPath],
workingDirectory: workspace.path,
stdoutEncoding: utf8,
stderrEncoding: utf8,
);
expect(trimDependencyOverridesWarning(process.stderr), isEmpty);
expect(
process.stdout,
'''
[hello_world] test_app (analyzer, analyzer_plugin)
[hello_world] test_app2 (analyzer, analyzer_plugin)
test_app/lib/main.dart:1:6 • Hello world • hello_world • INFO
test_app2/lib/main2.dart:1:6 • Hello world • hello_world • INFO
''',
);
expect(process.exitCode, 1);
});
group('Correctly exits when', () {
test('running on a workspace with no plugins', () {
final app = createLintUsage(name: 'test_app');
final process = Process.runSync(
'dart',
[customLintBinPath],
workingDirectory: app.path,
stdoutEncoding: utf8,
stderrEncoding: utf8,
);
expect(trimDependencyOverridesWarning(process.stderr), isEmpty);
expect(process.stdout, 'No issues found!\n');
expect(process.exitCode, 0);
});
test('running on a workspace with no projects', () {
final dir = createTemporaryDirectory();
final process = Process.runSync(
'dart',
[customLintBinPath],
workingDirectory: dir.path,
stdoutEncoding: utf8,
stderrEncoding: utf8,
);
expect(trimDependencyOverridesWarning(process.stderr), isEmpty);
expect(process.stdout, 'No issues found!\n');
expect(process.exitCode, 0);
});
test(
'no issues found',
() async {
final plugin = createPlugin(name: 'test_lint', main: emptyPluginSource);
final app = createLintUsage(
name: 'test_app',
source: {
'lib/main.dart': 'void fn() {}',
'lib/another.dart': 'void fail() {}',
},
plugins: {'test_lint': plugin.uri},
);
final process = await Process.run(
'dart',
[customLintBinPath],
workingDirectory: app.path,
stdoutEncoding: utf8,
stderrEncoding: utf8,
);
expect(trimDependencyOverridesWarning(process.stderr), isEmpty);
expect(process.stdout, 'No issues found!\n');
expect(process.exitCode, 0);
},
);
test(
'found lints',
() async {
final plugin = createPlugin(name: 'test_lint', main: oyPluginSource);
final app = createLintUsage(
name: 'test_app',
source: {
'lib/main.dart': 'void fn() {}',
'lib/another.dart': 'void fail() {}',
},
plugins: {'test_lint': plugin.uri},
);
final process = await Process.run(
'dart',
[customLintBinPath],
workingDirectory: app.path,
);
expect(trimDependencyOverridesWarning(process.stderr), isEmpty);
expect(process.stdout, '''
lib/another.dart:1:6 • Oy • oy • INFO
lib/main.dart:1:6 • Oy • oy • INFO
''');
expect(process.exitCode, 1);
},
);
test(
'missing package_config.json',
() async {
final plugin = createPlugin(name: 'test_lint', main: oyPluginSource);
final app = createLintUsage(
name: 'test_app',
source: {
'lib/main.dart': 'void fn() {}',
'lib/another.dart': 'void fail() {}',
},
plugins: {'test_lint': plugin.uri},
);
// Create a child context root
final innerContextRoot = createLintUsage(
name: 'test_project_inner',
source: {
'lib/main.dart': 'void fn() {}',
'lib/another.dart': 'void fail() {}',
},
parent: app,
);
// create error during initialization because of missing package_config.json
final packageConfig = innerContextRoot.packageConfig;
// Potentially resolve the file system link, temp folders are links on macOs into /private/var
final missingPackageConfig =
await innerContextRoot.resolveSymbolicLinks();
packageConfig.deleteSync();
final process = await Process.run(
'dart',
[customLintBinPath],
workingDirectory: app.path,
);
expect(process.exitCode, isNot(0));
expect(
trimDependencyOverridesWarning(process.stderr),
startsWith(
'The request analysis.setContextRoots failed with the following error:\n'
'RequestErrorCode.PLUGIN_ERROR\n'
'A request threw the exception:Failed to find .dart_tool/package_config.json at $missingPackageConfig.\n'
'Make sure to run `pub get` first.\n'
'If "$missingPackageConfig" is in your PUB_CACHE dir, run `dart pub cache repair`\n',
),
);
expect(process.stdout, isEmpty);
},
);
test(
'dependency conflict',
() async {
// Create two packages with the same name but different paths
final workspace =
await createSimpleWorkspace(['dep', 'dep'], local: true);
final plugin = createPlugin(
parent: workspace,
name: 'test_lint',
main: oyPluginSource,
extraDependencies: {'dep': 'any'},
);
// We define two projects with different dependencies
final app = createLintUsage(
parent: workspace,
name: 'test_app',
source: {'lib/main.dart': 'void fn() {}'},
plugins: {'test_lint': plugin.uri},
extraPackageConfig: {'dep': workspace.dir('dep').uri},
);
final app2 = createLintUsage(
// Add the second project inside the first one, such that
// analyzing the first project analyzes both projects
parent: app,
name: 'test_app2',
source: {'lib/foo.dart': 'void fn() {}'},
plugins: {'test_lint': plugin.uri},
extraPackageConfig: {'dep': workspace.dir('dep2').uri},
);
final process = await Process.start(
workingDirectory: app.path,
'dart',
[customLintBinPath],
);
expect(process.stdout, emitsDone);
expect(
await process.stderr
.map(utf8.decode)
.map(trimDependencyOverridesWarning)
.join('\n'),
startsWith(
'''
The request analysis.setContextRoots failed with the following error:
RequestErrorCode.PLUGIN_ERROR
PackageVersionConflictError – Some dependencies with conflicting versions were identified:
Package dep:
- Hosted with version constraint: any
Resolved with ${workspace.dir('dep').path}/
Used by plugin "test_lint" at "../test_lint" in the project "test_app" at "."
- Hosted with version constraint: any
Resolved with ${workspace.dir('dep2').path}/
Used by plugin "test_lint" at "../test_lint" in the project "test_app2" at "test_app2"
$conflictExplanation
You could run the following commands to try fixing this:
cd ${app.path}
dart pub upgrade dep
cd ${app2.path}
dart pub upgrade dep
''',
),
);
expect(process.exitCode, completion(1));
},
);
});
}