forked from dart-lang/webdev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_strategy_test.dart
192 lines (164 loc) · 5.43 KB
/
load_strategy_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
// Copyright (c) 2023, 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.
@TestOn('vm')
@Timeout(Duration(minutes: 1))
library;
import 'package:dwds/dwds.dart';
import 'package:dwds/src/config/tool_configuration.dart';
import 'package:path/path.dart' as p;
import 'package:test/test.dart';
import 'package:test_common/test_sdk_configuration.dart';
import 'fixtures/context.dart';
import 'fixtures/fakes.dart';
import 'fixtures/project.dart';
import 'fixtures/utilities.dart';
void main() {
group('Load Strategy', () {
final project = TestProject.test;
final provider = TestSdkConfigurationProvider();
tearDownAll(provider.dispose);
final context = TestContext(project, provider);
setUpAll(context.setUp);
tearDownAll(context.tearDown);
group(
'When the packageConfigLocator does not specify a package config path',
() {
final strategy = FakeStrategy(FakeAssetReader());
test('defaults to "./dart_tool/package_config.json"', () {
expect(
p.split(strategy.packageConfigPath).join('/'),
endsWith('_testSound/.dart_tool/package_config.json'),
);
});
});
group('When a custom package config path is specified', () {
final strategy = FakeStrategy(
FakeAssetReader(),
packageConfigPath: 'custom/package_config/path',
);
test('uses the specified package config path', () {
expect(
strategy.packageConfigPath,
equals('custom/package_config/path'),
);
});
});
group('When default build settings defined', () {
final strategy = FakeStrategy(
FakeAssetReader(),
buildSettings: TestBuildSettings.dart(),
);
test('uses the default app entrypoint', () {
expect(
strategy.buildSettings.appEntrypoint,
isNull,
);
});
test('uses the default canary features setting', () {
expect(
strategy.buildSettings.canaryFeatures,
isFalse,
);
});
test('uses the default flutter app setting', () {
expect(
strategy.buildSettings.isFlutterApp,
isFalse,
);
});
test('uses the default experiments', () {
expect(
strategy.buildSettings.experiments,
isEmpty,
);
});
});
group('When custom build settings defined', () {
final appEntrypoint = Uri.parse('main.dart');
final canaryFeatures = true;
final isFlutterApp = true;
final experiments = ['records'];
final strategy = FakeStrategy(
FakeAssetReader(),
buildSettings: BuildSettings(
appEntrypoint: appEntrypoint,
isFlutterApp: isFlutterApp,
canaryFeatures: canaryFeatures,
experiments: experiments,
),
);
test('uses the specified app entrypoint', () {
expect(
strategy.buildSettings.appEntrypoint,
appEntrypoint,
);
});
test('uses the specified canary features setting', () {
expect(
strategy.buildSettings.canaryFeatures,
canaryFeatures,
);
});
test('uses the specified flutter app setting', () {
expect(
strategy.buildSettings.isFlutterApp,
isFlutterApp,
);
});
test('uses the specified experiments', () {
expect(
strategy.buildSettings.experiments,
experiments,
);
});
});
group('Global load strategy with default build settings', () {
test('provides build settings', () {
final loadStrategy = globalToolConfiguration.loadStrategy;
expect(
loadStrategy.buildSettings.appEntrypoint,
project.dartEntryFilePackageUri,
);
expect(loadStrategy.buildSettings.canaryFeatures, isFalse);
expect(loadStrategy.buildSettings.isFlutterApp, isFalse);
expect(loadStrategy.buildSettings.experiments, isEmpty);
});
});
});
group('Global load Strategy with custom build settings ', () {
final canaryFeatures = true;
final isFlutterApp = true;
final experiments = ['records'];
final project = TestProject.test;
final provider =
TestSdkConfigurationProvider(canaryFeatures: canaryFeatures);
tearDownAll(provider.dispose);
final context = TestContext(project, provider);
for (final compilationMode in CompilationMode.values) {
group('compiled with ${compilationMode.name}', () {
setUpAll(() async {
await context.setUp(
testSettings: TestSettings(
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
isFlutterApp: isFlutterApp,
experiments: experiments,
),
);
});
tearDownAll(context.tearDown);
test('provides custom build settings', () {
final loadStrategy = globalToolConfiguration.loadStrategy;
expect(
loadStrategy.buildSettings.appEntrypoint,
project.dartEntryFilePackageUri,
);
expect(loadStrategy.buildSettings.canaryFeatures, canaryFeatures);
expect(loadStrategy.buildSettings.isFlutterApp, isFlutterApp);
expect(loadStrategy.buildSettings.experiments, experiments);
});
});
}
});
}