-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackages_test.dart
574 lines (505 loc) · 19.7 KB
/
packages_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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
// Copyright (c) 2020, 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.
import 'package:analyzer/file_system/file_system.dart';
import 'package:analyzer/file_system/memory_file_system.dart';
import 'package:dartdoc/src/dartdoc_options.dart';
import 'package:dartdoc/src/model/class.dart';
import 'package:dartdoc/src/model/documentable.dart';
import 'package:dartdoc/src/model/kind.dart';
import 'package:dartdoc/src/package_config_provider.dart';
import 'package:dartdoc/src/package_meta.dart';
import 'package:test/test.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'dartdoc_test_base.dart';
import 'src/test_descriptor_utils.dart' as d;
import 'src/utils.dart' as utils;
void main() {
defineReflectiveSuite(() {
defineReflectiveTests(PackagesTest);
});
// TODO(srawlins): Migrate to test_reflective_loader tests.
late MemoryResourceProvider resourceProvider;
late PackageMetaProvider packageMetaProvider;
late FakePackageConfigProvider packageConfigProvider;
late DartdocOptionSet optionSet;
late Folder sdkFolder;
late Folder projectRoot;
late String projectPath;
var packageName = 'my_package';
void writeToJoinedPath(List<String> pathSegments, String content) {
var file = pathSegments.removeAt(pathSegments.length - 1);
var directory = projectRoot;
for (var d in pathSegments) {
directory = directory.getChildAssumingFolder(d);
}
directory.getChildAssumingFile(file).writeAsStringSync(content);
}
setUp(() async {
packageMetaProvider = utils.testPackageMetaProvider;
resourceProvider =
packageMetaProvider.resourceProvider as MemoryResourceProvider;
sdkFolder = packageMetaProvider.defaultSdkDir;
optionSet = DartdocOptionRoot.fromOptionGenerators(
'dartdoc', [createDartdocOptions], packageMetaProvider);
packageConfigProvider = utils.getTestPackageConfigProvider(sdkFolder.path);
});
tearDown(clearPackageMetaCache);
group('tests',
onPlatform: {'windows': Skip('Test does not work on Windows (#2446)')},
() {
group('typical package', () {
setUp(() {
optionSet.parseArguments([]);
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider);
projectPath = projectRoot.path;
projectRoot
.getChildAssumingFolder('lib')
.getChildAssumingFile('a.dart')
.writeAsStringSync('''
/// Documentation comment.
int x;
''');
});
test('with no deps has 2 local packages, including SDK', () async {
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider,
additionalArguments: [
'--auto-include-dependencies',
'--no-link-to-remote'
]);
var localPackages = packageGraph.localPackages;
expect(localPackages, hasLength(2));
expect(localPackages[0].name, equals(packageName));
expect(localPackages[1].name, equals('Dart'));
});
test('with no deps has 1 local package, excluding SDK', () async {
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider,
additionalArguments: ['--no-link-to-remote']);
var localPackages = packageGraph.localPackages;
expect(localPackages, hasLength(1));
expect(localPackages[0].name, equals(packageName));
});
test('has proper name and kind', () async {
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
var package = packageGraph.defaultPackage;
expect(package.name, equals('my_package'));
expect(package.kind, equals(Kind.package));
});
test('has public libraries', () async {
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.localPublicLibraries, hasLength(1));
var library = packageGraph.libraries.named('a');
expect(library.isDocumented, true);
});
test('has private libraries', () async {
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
var interceptorsLib = packageGraph.libraries.named('dart:_internal');
expect(interceptorsLib.isPublic, isFalse);
});
test('has a homepage', () async {
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.defaultPackage.hasHomepage, isTrue);
expect(packageGraph.defaultPackage.homepage,
equals('https://github.com/dart-lang'));
});
test('has anonymous libraries', () async {
writeToJoinedPath(['lib', 'b.dart'], '''
/// Documentation comment.
int x;
''');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.libraries.where((lib) => lib.name == 'b'),
hasLength(1));
});
test('has documentation via Markdown README', () async {
writeToJoinedPath(['README.md'], 'Readme text.');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.defaultPackage.packageMeta.getReadmeContents(),
isNotNull);
expect(packageGraph.defaultPackage.hasDocumentation, true);
});
test('has documentation via text README', () async {
writeToJoinedPath(['README'], 'Readme text.');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.defaultPackage.packageMeta.getReadmeContents(),
isNotNull);
expect(packageGraph.defaultPackage.hasDocumentation, true);
});
test('has documentation content', () async {
writeToJoinedPath(['README.md'], 'Readme text.');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(
packageGraph.defaultPackage.documentation, equals('Readme text.'));
});
test('has documentation content rendered as HTML', () async {
writeToJoinedPath(['README.md'], 'Readme text.');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.defaultPackage.documentationAsHtml,
equals('<p>Readme text.</p>'));
});
});
test('documents single explicitly included library', () async {
optionSet.parseArguments([]);
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider);
projectPath = projectRoot.path;
writeToJoinedPath(['lib', 'foo.dart'], '''
/// Documentation comment.
library foo;
''');
writeToJoinedPath(['lib', 'bar.dart'], '''
/// Documentation comment.
library bar;
''');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider,
additionalArguments: ['--include', 'foo']);
expect(packageGraph.localPublicLibraries, hasLength(1));
expect(packageGraph.localPublicLibraries.single.name, equals('foo'));
});
test('documents multiple explicitly included libraries', () async {
optionSet.parseArguments(['--include', 'foo', '--include', 'bar']);
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider);
projectPath = projectRoot.path;
writeToJoinedPath(['lib', 'foo.dart'], '''
/// Documentation comment.
library foo;
''');
writeToJoinedPath(['lib', 'bar.dart'], '''
/// Documentation comment.
library bar;
''');
writeToJoinedPath(['lib', 'baz.dart'], '''
/// Documentation comment.
library baz;
''');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider,
additionalArguments: ['--include', 'foo', '--include', 'bar']);
var documentedLibraries = packageGraph.localPublicLibraries;
expect(documentedLibraries, hasLength(2));
expect(
documentedLibraries.map((e) => e.name), containsAll(['foo', 'bar']));
expect(documentedLibraries.map((e) => e.name), contains('bar'));
});
test('excludes single explicitly excluded library', () async {
optionSet.parseArguments([]);
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider);
projectPath = projectRoot.path;
writeToJoinedPath(['lib', 'foo.dart'], '''
/// Documentation comment.
library foo;
''');
writeToJoinedPath(['lib', 'bar.dart'], '''
/// Documentation comment.
library bar;
''');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider,
additionalArguments: ['--exclude', 'foo']);
expect(packageGraph.localPublicLibraries, hasLength(1));
expect(packageGraph.localPublicLibraries.single.name, equals('bar'));
});
group('using --link-to-remote', () {
late Folder packageOneRoot;
late Folder packageTwoRoot;
setUp(() {
optionSet.parseArguments(['--link-to-remote']);
packageOneRoot =
utils.writePackage('one', resourceProvider, packageConfigProvider);
packageOneRoot
.getChildAssumingFolder('lib')
.getChildAssumingFile('one.dart')
.writeAsStringSync('''
/// Documentation comment.
library one;
class One {}
''');
packageOneRoot.getChildAssumingFolder('bin').create();
packageOneRoot
.getChildAssumingFolder('bin')
.getChildAssumingFile('script.dart')
.writeAsStringSync('''
/// Documentation comment.
library script;
class Script {}
''');
packageTwoRoot =
utils.writePackage('two', resourceProvider, packageConfigProvider);
packageConfigProvider.addPackageToConfigFor(
packageTwoRoot.path, 'one', Uri.file('${packageOneRoot.path}/'));
packageTwoRoot
.getChildAssumingFolder('lib')
.getChildAssumingFile('two.dart')
.writeAsStringSync('''
/// Documentation comment.
library two;
import 'package:one/one.dart';
class Two extends One {}
''');
});
test('includes remote elements when linkTo -> url is specified',
() async {
packageOneRoot
.getChildAssumingFile('dartdoc_options.yaml')
.writeAsStringSync('''
dartdoc:
linkTo:
url: 'https://mypub.topdomain/%n%/%v%'
''');
var packageGraph = await utils.bootBasicPackage(
packageTwoRoot.path, packageMetaProvider, packageConfigProvider,
additionalArguments: ['--link-to-remote']);
expect(packageGraph.packages, hasLength(3));
var packageOne =
packageGraph.packages.singleWhere((p) => p.name == 'one');
// TODO(srawlins): Why is there more than one?
var libraryOne =
packageOne.allLibraries.lastWhere((l) => l.name == 'one');
var classOne = libraryOne.classes.named('One');
expect(packageOne.documentedWhere, equals(DocumentLocation.remote));
expect(classOne.href,
equals('https://mypub.topdomain/one/0.0.1/one/One-class.html'));
});
test(
'does not include remote elements when linkTo -> url is not specified',
() async {
var packageGraph = await utils.bootBasicPackage(
packageTwoRoot.path, packageMetaProvider, packageConfigProvider,
additionalArguments: ['--link-to-remote']);
expect(packageGraph.packages, hasLength(3));
var packageOne =
packageGraph.packages.singleWhere((p) => p.name == 'one');
expect(packageOne.documentedWhere, equals(DocumentLocation.missing));
});
test(
'includes external remote elements when includeExternal is specified',
() async {
packageOneRoot
.getChildAssumingFile('dartdoc_options.yaml')
.writeAsStringSync('''
dartdoc:
includeExternal:
- bin/script.dart
linkTo:
url: 'https://mypub.topdomain/%n%/%v%'
''');
var packageGraph = await utils.bootBasicPackage(
packageTwoRoot.path, packageMetaProvider, packageConfigProvider,
additionalArguments: ['--link-to-remote']);
expect(packageGraph.packages, hasLength(3));
var packageOne =
packageGraph.packages.singleWhere((p) => p.name == 'one');
expect(packageOne.documentedWhere, equals(DocumentLocation.remote));
// TODO(srawlins): Why is there more than one?
var libraryScript = packageOne.allLibraries.named('script');
var classScript = libraryScript.classesAndExceptions.named('Script');
expect(
classScript.href,
equals(
'https://mypub.topdomain/one/0.0.1/script/Script-class.html'));
});
});
group('SDK package', () {
setUp(() {
optionSet.parseArguments([]);
});
test('has proper name and kind', () async {
var packageGraph = await utils.bootBasicPackage(
sdkFolder.path, packageMetaProvider, packageConfigProvider,
additionalArguments: [
'--input',
packageMetaProvider.defaultSdkDir.path,
]);
var sdkPackage = packageGraph.defaultPackage;
expect(sdkPackage.name, equals('Dart'));
expect(sdkPackage.kind, equals(Kind.sdk));
});
test('has a homepage', () async {
var packageGraph = await utils.bootBasicPackage(
sdkFolder.path, packageMetaProvider, packageConfigProvider,
additionalArguments: [
'--input',
packageMetaProvider.defaultSdkDir.path,
]);
var sdkPackage = packageGraph.defaultPackage;
expect(sdkPackage.hasHomepage, isTrue);
expect(sdkPackage.homepage, equals('https://github.com/dart-lang/sdk'));
});
test('has a version', () async {
var packageGraph = await utils.bootBasicPackage(
sdkFolder.path, packageMetaProvider, packageConfigProvider,
additionalArguments: [
'--input',
packageMetaProvider.defaultSdkDir.path,
]);
var sdkPackage = packageGraph.defaultPackage;
expect(sdkPackage.version, isNotNull);
});
test('has a description', () async {
var packageGraph = await utils.bootBasicPackage(
sdkFolder.path, packageMetaProvider, packageConfigProvider,
additionalArguments: [
'--input',
packageMetaProvider.defaultSdkDir.path,
]);
var sdkPackage = packageGraph.defaultPackage;
expect(sdkPackage.documentation, startsWith('Welcome'));
});
});
group('using default options', () {
setUp(() {
optionSet.parseArguments([]);
});
test('package with no version has a default version', () async {
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider,
pubspecContent: '''
name: $packageName
''');
projectPath = projectRoot.path;
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.defaultPackage.version, equals('0.0.0-unknown'));
});
test('package with no doc comments has no docs', () async {
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider);
projectPath = projectRoot.path;
writeToJoinedPath(['lib', 'a.dart'], '''
// No documentation comment.
int x;
''');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.defaultPackage.hasDocumentation, isFalse);
expect(packageGraph.defaultPackage.packageMeta.getReadmeContents(),
isNull);
expect(packageGraph.defaultPackage.documentation, isNull);
});
test('package with no homepage in the pubspec has no homepage', () async {
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider,
pubspecContent: '''
name: $packageName
version: 0.0.1
''');
projectPath = projectRoot.path;
writeToJoinedPath(['lib', 'a.dart'], '''
/// Documentation comment.
int x;
''');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.defaultPackage.hasHomepage, isFalse);
});
test('package with no doc comments has no categories', () async {
projectRoot = utils.writePackage(
packageName, resourceProvider, packageConfigProvider);
projectPath = projectRoot.path;
writeToJoinedPath(['lib', 'a.dart'], '''
// No documentation comment.
int x;
''');
var packageGraph = await utils.bootBasicPackage(
projectPath, packageMetaProvider, packageConfigProvider);
expect(packageGraph.localPackages.first.hasCategories, isFalse);
expect(packageGraph.localPackages.first.categories, isEmpty);
});
});
});
}
@reflectiveTest
class PackagesTest extends DartdocTestBase {
@override
String get libraryName => 'lib';
void test_exportedElements() async {
var graph = await bootPackageFromFiles(
[
d.dir('lib', [
d.file('lib.dart', "export 'src/impl.dart';"),
d.dir('src', [
d.file('impl.dart', 'class C {}'),
]),
]),
],
);
var library = graph.libraries.named('lib');
expect(library.classes.single.name, 'C');
}
void test_exportedElements_indirectlyExported() async {
var graph = await bootPackageFromFiles(
[
d.dir('lib', [
d.file('lib.dart', "export 'src/impl.dart';"),
d.dir('src', [
d.file('impl.dart', "export 'impl2.dart';"),
d.file('impl2.dart', 'class C {}'),
]),
]),
],
);
var library = graph.libraries.named('lib');
expect(library.classes.single.name, 'C');
}
void test_exportedElements_fromPart() async {
var graph = await bootPackageFromFiles(
[
d.dir('lib', [
d.file('lib.dart', "part 'part.dart';"),
d.file('part.dart', '''
part of 'lib.dart';
export 'src/impl.dart';
'''),
d.dir('src', [
d.file('impl.dart', 'class C {}'),
]),
]),
],
);
var library = graph.libraries.named('lib');
expect(library.qualifiedName, 'lib');
expect(library.classes, isNotEmpty);
expect(library.classes.single,
isA<Class>().having((c) => c.name, 'name', 'C'));
}
void test_exportedElements_fromPartOfPart() async {
var graph = await bootPackageFromFiles(
[
d.dir('lib', [
d.file('lib.dart', "part 'part1.dart';"),
d.file('part1.dart', '''
part of 'lib.dart';
part 'part2.dart';
'''),
d.file('part2.dart', '''
part of 'part1.dart';
export 'src/impl.dart';
'''),
d.dir('src', [
d.file('impl.dart', 'class C {}'),
]),
]),
],
);
var library = graph.libraries.named('lib');
expect(library.qualifiedName, 'lib');
expect(library.classes, isNotEmpty);
expect(library.classes.single,
isA<Class>().having((c) => c.name, 'name', 'C'));
}
}