blob: 5f63c1725ad535b5ad1a4a9fe20d9c797d34e5cf [file] [log] [blame]
// 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:test/test.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'integration_tests.dart';
void main() {
defineReflectiveSuite(() {
defineReflectiveTests(AnalyzerStatusTest);
});
}
@reflectiveTest
class AnalyzerStatusTest extends AbstractLspAnalysisServerIntegrationTest {
Future<void> test_afterDocumentEdits() async {
const initialContents = 'int a = 1;';
newFile(mainFilePath, initialContents);
await initialize();
await initialAnalysis;
// Set up futures to wait for the new events.
var startNotification = waitForAnalysisStart();
var completeNotification = waitForAnalysisComplete();
// Send a modification
await openFile(mainFileUri, initialContents);
await replaceFile(222, mainFileUri, 'int a = 2;');
// Ensure the notifications come through again.
await startNotification;
await completeNotification;
}
Future<void> test_afterInitialize() async {
const initialContents = 'int a = 1;';
newFile(mainFilePath, initialContents);
// To avoid races, set up listeners for the notifications before we initialise
// and track which event came first to ensure they arrived in the expected
// order.
bool? firstNotificationWasAnalyzing;
var startNotification = waitForAnalysisStart().then(
(_) => firstNotificationWasAnalyzing ??= true,
);
var completeNotification = waitForAnalysisComplete().then(
(_) => firstNotificationWasAnalyzing ??= false,
);
await initialize();
await startNotification;
await completeNotification;
expect(firstNotificationWasAnalyzing, isTrue);
}
}