blob: c67433b42dedca4c1a364bfcd23962e0ec0d1e76 [file] [log] [blame] [edit]
// 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.
@Tags(['daily'])
@Timeout(Duration(minutes: 2))
library;
import 'package:dwds/src/services/expression_compiler.dart';
import 'package:test/test.dart';
import 'package:test_common/test_sdk_configuration.dart';
import '../fixtures/context.dart';
import 'common/instance_common.dart';
void main() {
// Enable verbose logging for debugging.
const debug = false;
final moduleFormat = ModuleFormat.amd;
group('canary: false | Build Daemon |', () {
final canaryFeatures = false;
final compilationMode = CompilationMode.buildDaemon;
final provider = TestSdkConfigurationProvider(
canaryFeatures: canaryFeatures,
verbose: debug,
ddcModuleFormat: moduleFormat,
);
tearDownAll(provider.dispose);
runTypeSystemVerificationTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
runTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
});
group('canary: true | Build Daemon |', () {
final canaryFeatures = true;
final compilationMode = CompilationMode.buildDaemon;
final provider = TestSdkConfigurationProvider(
canaryFeatures: canaryFeatures,
verbose: debug,
ddcModuleFormat: moduleFormat,
);
tearDownAll(provider.dispose);
runTypeSystemVerificationTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
runTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
});
group('canary: false | Frontend Server |', () {
final canaryFeatures = false;
final compilationMode = CompilationMode.frontendServer;
final provider = TestSdkConfigurationProvider(
canaryFeatures: canaryFeatures,
verbose: debug,
ddcModuleFormat: moduleFormat,
);
tearDownAll(provider.dispose);
runTypeSystemVerificationTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
runTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
});
group('canary: true | Frontend Server |', () {
final canaryFeatures = true;
final compilationMode = CompilationMode.frontendServer;
final provider = TestSdkConfigurationProvider(
canaryFeatures: canaryFeatures,
verbose: debug,
ddcModuleFormat: moduleFormat,
);
tearDownAll(provider.dispose);
runTypeSystemVerificationTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
runTests(
provider: provider,
compilationMode: compilationMode,
canaryFeatures: canaryFeatures,
);
});
}