-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathsource_linker_test.dart
84 lines (77 loc) · 3.03 KB
/
source_linker_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
// 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.
import 'package:dartdoc/src/dartdoc_options.dart';
import 'package:dartdoc/src/source_linker.dart';
import 'package:test/test.dart';
void main() {
group('Source link computations', () {
test('Basic usage', () {
String sourceLinkerHref() => SourceLinker(
excludes: [],
lineNumber: 14,
root: 'path',
sourceFileName: 'path/to/file.dart',
revision: '01234abcd',
uriTemplate: 'http://github.com/base/%r%/%f%/L%l%')
.href();
expect(sourceLinkerHref(),
equals('http://github.com/base/01234abcd/to/file.dart/L14'));
});
test('Throw when missing a revision if one is in the template', () {
String sourceLinkerHref() => SourceLinker(
excludes: [],
lineNumber: 20,
root: 'path',
sourceFileName: 'path/to/file.dart',
uriTemplate: 'http://github.com/base/%r%/%f%/L%l%')
.href();
expect(sourceLinkerHref, throwsA(TypeMatcher<DartdocOptionError>()));
});
test('Allow a missing revision as long as it is not in the template', () {
String sourceLinkerHref() => SourceLinker(
excludes: [],
lineNumber: 71,
root: 'path',
sourceFileName: 'path/to/file.dart',
uriTemplate: 'http://github.com/base/main/%f%/L%l%')
.href();
expect(sourceLinkerHref(),
equals('http://github.com/base/main/to/file.dart/L71'));
});
test('Throw if only revision specified', () {
String sourceLinkerHref() => SourceLinker(
excludes: [],
lineNumber: 20,
revision: '12345',
sourceFileName: 'path/to/file.dart',
).href();
expect(sourceLinkerHref, throwsA(TypeMatcher<DartdocOptionError>()));
});
test('Hide a path inside an exclude', () {
String sourceLinkerHref() => SourceLinker(
excludes: ['path/under/exclusion'],
lineNumber: 14,
root: 'path',
sourceFileName: 'path/under/exclusion/file.dart',
revision: '01234abcd',
uriTemplate: 'http://github.com/base/%r%/%f%/L%l%')
.href();
expect(sourceLinkerHref(), equals(''));
});
test('Check that paths outside exclusions work', () {
String sourceLinkerHref() => SourceLinker(
excludes: ['path/under/exclusion'],
lineNumber: 14,
root: 'path',
sourceFileName: 'path/not/under/exclusion/file.dart',
revision: '01234abcd',
uriTemplate: 'http://github.com/base/%r%/%f%/L%l%')
.href();
expect(
sourceLinkerHref(),
equals(
'http://github.com/base/01234abcd/not/under/exclusion/file.dart/L14'));
});
});
}