-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathdartdoc_integration_test.dart
255 lines (223 loc) · 9.6 KB
/
dartdoc_integration_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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library dartdoc.dartdoc_integration_test;
import 'dart:async';
import 'dart:io';
import 'dart:mirrors';
import 'package:dartdoc/dartdoc.dart';
import 'package:path/path.dart' as path;
import 'package:test/test.dart';
import 'src/utils.dart';
Uri get _currentFileUri =>
(reflect(main) as ClosureMirror).function.location.sourceUri;
String get _testPackagePath =>
path.fromUri(_currentFileUri.resolve('../testing/test_package'));
String get _testPackageFlutterPluginPath => path
.fromUri(_currentFileUri.resolve('../testing/test_package_flutter_plugin'));
void main() {
group('Invoking command-line dartdoc', () {
String dartdocPath = path.canonicalize(path.join('bin', 'dartdoc.dart'));
CoverageSubprocessLauncher subprocessLauncher;
Directory tempDir;
setUpAll(() async {
tempDir =
Directory.systemTemp.createTempSync('dartdoc_integration_test.');
subprocessLauncher =
CoverageSubprocessLauncher('dartdoc_integration_test-subprocesses');
});
tearDown(() async {
tempDir.listSync().forEach((FileSystemEntity f) {
f.deleteSync(recursive: true);
});
});
tearDownAll(() async {
await Future.wait(CoverageSubprocessLauncher.coverageResults);
});
test('running --no-generate-docs is quiet and does not generate docs',
() async {
Directory outputDir =
await Directory.systemTemp.createTemp('dartdoc.testEmpty.');
List<String> outputLines = [];
await subprocessLauncher.runStreamed(Platform.resolvedExecutable,
[dartdocPath, '--output', outputDir.path, '--no-generate-docs'],
perLine: outputLines.add, workingDirectory: _testPackagePath);
expect(outputLines, isNot(contains(matches('^parsing'))));
expect(outputLines, contains(matches('^ warning:')));
expect(outputLines.last, matches(r'^found \d+ warnings and \d+ errors'));
expect(outputDir.listSync(), isEmpty);
}, timeout: Timeout.factor(2));
test('running --quiet is quiet and does generate docs', () async {
Directory outputDir =
await Directory.systemTemp.createTemp('dartdoc.testEmpty.');
List<String> outputLines = [];
await subprocessLauncher.runStreamed(Platform.resolvedExecutable,
[dartdocPath, '--output', outputDir.path, '--quiet'],
perLine: outputLines.add, workingDirectory: _testPackagePath);
expect(outputLines, isNot(contains(matches('^parsing'))));
expect(outputLines, contains(matches('^ warning:')));
expect(outputLines.last, matches(r'^found \d+ warnings and \d+ errors'));
expect(outputDir.listSync(), isNotEmpty);
}, timeout: Timeout.factor(2));
test('invalid parameters return non-zero and print a fatal-error',
() async {
List outputLines = [];
await expectLater(
() => subprocessLauncher.runStreamed(
Platform.resolvedExecutable,
[
dartdocPath,
'--nonexisting',
],
perLine: outputLines.add),
throwsA(const TypeMatcher<ProcessException>()));
expect(
outputLines.firstWhere((l) => l.startsWith(' fatal')),
equals(
' fatal error: Could not find an option named "nonexisting".'));
});
test('missing a required file path prints a fatal-error', () async {
List outputLines = [];
String impossiblePath = path.join(dartdocPath, 'impossible');
await expectLater(
() => subprocessLauncher.runStreamed(
Platform.resolvedExecutable,
[
dartdocPath,
'--input',
impossiblePath,
],
perLine: outputLines.add),
throwsA(const TypeMatcher<ProcessException>()));
expect(
outputLines.firstWhere((l) => l.startsWith(' fatal')),
startsWith(
' fatal error: Argument --input, set to ${impossiblePath}, resolves to missing path: '));
});
test('errors cause non-zero exit when warnings are off', () async {
expect(
() => subprocessLauncher.runStreamed(Platform.resolvedExecutable, [
dartdocPath,
'--allow-tools',
'--input=${testPackageToolError.path}',
'--output=${path.join(tempDir.absolute.path, 'test_package_tool_error')}'
]),
throwsA(const TypeMatcher<ProcessException>()));
});
test('help prints command line args', () async {
List<String> outputLines = [];
await subprocessLauncher.runStreamed(
Platform.resolvedExecutable, [dartdocPath, '--help'],
perLine: outputLines.add);
expect(outputLines,
contains('Generate HTML documentation for Dart libraries.'));
expect(
outputLines.join('\n'),
contains(
RegExp('^-h, --help[ ]+Show command help.', multiLine: true)));
});
test('Validate missing FLUTTER_ROOT exception is clean', () async {
StringBuffer output = StringBuffer();
var args = <String>[dartdocPath];
var dart_tool =
Directory(path.join(_testPackageFlutterPluginPath, '.dart_tool'));
if (dart_tool.existsSync()) dart_tool.deleteSync(recursive: true);
Future run = subprocessLauncher.runStreamed(
Platform.resolvedExecutable, args,
environment: Map.from(Platform.environment)..remove('FLUTTER_ROOT'),
includeParentEnvironment: false,
workingDirectory: _testPackageFlutterPluginPath, perLine: (s) {
output.writeln(s);
});
// Asynchronous exception, but we still need the output, too.
expect(run, throwsA(TypeMatcher<ProcessException>()));
try {
await run;
} on ProcessException catch (_) {}
expect(
output.toString(),
contains(RegExp(
'Top level package requires Flutter but FLUTTER_ROOT environment variable not set|test_package_flutter_plugin requires the Flutter SDK, version solving failed')));
expect(output.toString(), isNot(contains('asynchronous gap')));
});
test("Validate --version works", () async {
StringBuffer output = StringBuffer();
var args = <String>[dartdocPath, '--version'];
await subprocessLauncher.runStreamed(Platform.resolvedExecutable, args,
workingDirectory: _testPackagePath,
perLine: (s) => output.writeln(s));
PackageMeta dartdocMeta = PackageMeta.fromFilename(dartdocPath);
expect(output.toString(),
endsWith('dartdoc version: ${dartdocMeta.version}\n'));
});
test('Check for sample code in examples', () async {
StringBuffer output = StringBuffer();
var args = <String>[
dartdocPath,
'--include',
'ex',
'--no-include-source',
'--output',
tempDir.path
];
await subprocessLauncher.runStreamed(Platform.resolvedExecutable, args,
workingDirectory: _testPackagePath,
perLine: (s) => output.writeln(s));
// Examples are reported as unfound because we (purposefully)
// did not use --example-path-prefix above.
final sep = '.'; // We don't care what the path separator character is
final firstUnfoundExample = RegExp('warning: lib${sep}example.dart: '
'@example file not found.*test_package${sep}dog${sep}food.md');
if (!output.toString().contains(firstUnfoundExample)) {
fail('Should warn about unfound @example files');
}
});
test('Validate JSON output', () async {
var args = <String>[
dartdocPath,
'--include',
'ex',
'--no-include-source',
'--output',
tempDir.path,
'--json'
];
Iterable<Map> jsonValues = await subprocessLauncher.runStreamed(
Platform.resolvedExecutable, args,
workingDirectory: _testPackagePath);
expect(jsonValues, isNotEmpty,
reason: 'All STDOUT lines should be JSON-encoded maps.');
}, timeout: Timeout.factor(2));
test('--footer-text includes text', () async {
String footerTextPath =
path.join(Directory.systemTemp.path, 'footer.txt');
File(footerTextPath).writeAsStringSync(' footer text include ');
var args = <String>[
dartdocPath,
'--footer-text=${footerTextPath}',
'--include',
'ex',
'--output',
tempDir.path
];
await subprocessLauncher.runStreamed(Platform.resolvedExecutable, args,
workingDirectory: _testPackagePath);
File outFile = File(path.join(tempDir.path, 'index.html'));
expect(outFile.readAsStringSync(), contains('footer text include'));
}, timeout: Timeout.factor(2));
test('--footer-text excludes version', () async {
String _testPackagePath = path
.fromUri(_currentFileUri.resolve('../testing/test_package_options'));
var args = <String>[dartdocPath, '--output', tempDir.path];
await subprocessLauncher.runStreamed(Platform.resolvedExecutable, args,
workingDirectory: _testPackagePath);
File outFile = File(path.join(tempDir.path, 'index.html'));
RegExp footerRegex =
RegExp('<footer>(.*\s*?\n?)+?</footer>', multiLine: true);
// get footer, check for version number
RegExpMatch m = footerRegex.firstMatch(outFile.readAsStringSync());
RegExp version = RegExp(r'(\d+\.)?(\d+\.)?(\*|\d+)');
expect(version.hasMatch(m.group(0)), false);
});
}, timeout: Timeout.factor(8));
}