blob: 6bee49150b3e9c458fad7dc34cf0a32630938586 [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.
@Timeout(Duration(minutes: 5))
import 'dart:io';
import 'package:dwds/dwds.dart';
import 'package:test/test.dart';
import 'package:vm_service/vm_service.dart';
import 'fixtures/context.dart';
final context = TestContext(
path: 'append_body/index.html',
);
void main() {
group('Injected client with live reload', () {
setUp(() async {
await context.setUp(reloadConfiguration: ReloadConfiguration.liveReload);
});
tearDown(() async {
await context.tearDown();
});
test('can live reload changes ', () async {
await context.changeInput();
var source = await context.webDriver.pageSource;
// A full reload should clear the state.
expect(source.contains('Hello World!'), isFalse);
expect(source.contains('Gary is awesome!'), isTrue);
});
});
group('Injected client', () {
setUp(() async {
await context.setUp();
});
tearDown(() async {
await context.tearDown();
});
test('destroys and recreates the isolate during a hot restart', () async {
var client = context.debugConnection.vmService;
await client.streamListen('Isolate');
await context.changeInput();
var eventsDone = expectLater(
client.onIsolateEvent,
emitsThrough(emitsInOrder([
_hasKind(EventKind.kIsolateExit),
_hasKind(EventKind.kIsolateStart),
_hasKind(EventKind.kIsolateRunnable),
])));
expect(await client.callServiceExtension('hotRestart'),
const TypeMatcher<Success>());
await eventsDone;
});
test('destroys and recreates the isolate during a page refresh', () async {
var client = context.debugConnection.vmService;
await client.streamListen('Isolate');
await context.changeInput();
var eventsDone = expectLater(
client.onIsolateEvent,
emitsThrough(emitsInOrder([
_hasKind(EventKind.kIsolateExit),
_hasKind(EventKind.kIsolateStart),
_hasKind(EventKind.kIsolateRunnable),
])));
await context.webDriver.driver.refresh();
await eventsDone;
});
test('can hot restart via the service extension', () async {
var client = context.debugConnection.vmService;
await context.changeInput();
expect(await client.callServiceExtension('hotRestart'),
const TypeMatcher<Success>());
await Future.delayed(const Duration(seconds: 2));
var source = await context.webDriver.pageSource;
// Main is re-invoked which shouldn't clear the state.
expect(source, contains('Hello World!'));
expect(source, contains('Gary is awesome!'));
});
test('can refresh the page via the fullReload service extension', () async {
var client = context.debugConnection.vmService;
await context.changeInput();
expect(await client.callServiceExtension('fullReload'), isA<Success>());
await Future.delayed(const Duration(seconds: 2));
var source = await context.webDriver.pageSource;
// Should see only the new text
expect(source, isNot(contains('Hello World!')));
expect(source, contains('Gary is awesome!'));
});
test('can hot restart while paused', () async {
var client = context.debugConnection.vmService;
var vm = await client.getVM();
var isolateId = vm.isolates.first.id;
await client.streamListen('Debug');
var stream = client.onEvent('Debug');
var scriptList = await client.getScripts(isolateId);
var main = scriptList.scripts
.firstWhere((script) => script.uri.contains('main.dart'));
await client.addBreakpoint(isolateId, main.id, 13);
await stream
.firstWhere((event) => event.kind == EventKind.kPauseBreakpoint);
await context.changeInput();
await client.streamListen('Isolate');
stream = client.onEvent('Isolate');
await client.callServiceExtension('hotRestart');
await stream.firstWhere((event) => event.kind == EventKind.kIsolateStart);
var source = await context.webDriver.pageSource;
// Main is re-invoked which shouldn't clear the state.
expect(source.contains('Hello World!'), isTrue);
expect(source.contains('Gary is awesome!'), isTrue);
// Should not be paused.
vm = await client.getVM();
isolateId = vm.isolates.first.id;
var isolate = await client.getIsolate(isolateId) as Isolate;
expect(isolate.pauseEvent.kind, EventKind.kResume);
expect(isolate.breakpoints.isEmpty, isTrue);
// TODO(sdk/issues/37364) - Remove once corresponding SDK issue is fixed.
}, skip: Platform.isWindows);
});
group('Injected client with hot restart', () {
setUp(() async {
await context.setUp(reloadConfiguration: ReloadConfiguration.hotRestart);
});
tearDown(() async {
await context.tearDown();
});
test('can hot restart changes ', () async {
await context.changeInput();
var source = await context.webDriver.pageSource;
// Main is re-invoked which shouldn't clear the state.
expect(source.contains('Hello World!'), isTrue);
expect(source.contains('Gary is awesome!'), isTrue);
// The ext.flutter.disassemble callback is invoked and waited for.
expect(source,
contains('start disassemble end disassemble Gary is awesome'));
});
test('fires isolate create/destroy events during hot restart', () async {
var client = context.debugConnection.vmService;
await client.streamListen('Isolate');
var eventsDone = expectLater(
client.onIsolateEvent,
emitsThrough(emitsInOrder([
_hasKind(EventKind.kIsolateExit),
_hasKind(EventKind.kIsolateStart),
_hasKind(EventKind.kIsolateRunnable),
])));
await context.changeInput();
await eventsDone;
});
});
}
TypeMatcher<Event> _hasKind(String kind) =>
isA<Event>().having((e) => e.kind, 'kind', kind);