1c571a12fa
Fixes https://github.com/dart-lang/sdk/issues/47964 TEST=CQ Change-Id: I4ee57bc5739835824b0052bd9470a0d52ccf161b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/229948 Reviewed-by: Devon Carew <devoncarew@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com>
55 lines
1.3 KiB
Dart
55 lines
1.3 KiB
Dart
// 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 'dart:io' as io;
|
|
|
|
import 'package:cli_util/cli_logging.dart';
|
|
import 'package:dartdev/src/analysis_server.dart';
|
|
import 'package:dartdev/src/core.dart';
|
|
import 'package:dartdev/src/sdk.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'utils.dart';
|
|
|
|
void main() {
|
|
group('AnalysisServer', () {
|
|
late TestProject p;
|
|
|
|
setUp(() {
|
|
log = Logger.standard();
|
|
p = project();
|
|
});
|
|
|
|
tearDown(() async => await p.dispose());
|
|
|
|
test('can start', () async {
|
|
AnalysisServer server = AnalysisServer(
|
|
null,
|
|
io.Directory(sdk.sdkPath),
|
|
[p.dir],
|
|
commandName: 'testing',
|
|
argResults: null,
|
|
);
|
|
await server.start();
|
|
await server.shutdown();
|
|
});
|
|
|
|
test('can send message', () async {
|
|
AnalysisServer server = AnalysisServer(
|
|
null,
|
|
io.Directory(sdk.sdkPath),
|
|
[p.dir],
|
|
commandName: 'testing',
|
|
argResults: null,
|
|
);
|
|
await server.start();
|
|
|
|
final response = await server.getVersion();
|
|
expect(response, isNotEmpty);
|
|
|
|
await server.shutdown();
|
|
});
|
|
});
|
|
}
|