mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
37 lines
1.2 KiB
Dart
37 lines
1.2 KiB
Dart
// Copyright 2017 The Chromium Authors. 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:async';
|
|
import 'dart:io';
|
|
|
|
import '../framework/adb.dart';
|
|
import '../framework/framework.dart';
|
|
import '../framework/ios.dart';
|
|
import '../framework/utils.dart';
|
|
|
|
Future<TaskResult> runEndToEndTests() async {
|
|
final Device device = await devices.workingDevice;
|
|
await device.unlock();
|
|
final String deviceId = device.deviceId;
|
|
final Directory testDirectory = dir('${flutterDirectory.path}/dev/integration_tests/ui');
|
|
await inDirectory(testDirectory, () async {
|
|
await flutter('packages', options: <String>['get']);
|
|
|
|
if (deviceOperatingSystem == DeviceOperatingSystem.ios)
|
|
await prepareProvisioningCertificates(testDirectory.path);
|
|
|
|
const List<String> entryPoints = const <String>[
|
|
'lib/keyboard_resize.dart',
|
|
'lib/driver.dart',
|
|
'lib/screenshot.dart',
|
|
];
|
|
|
|
for (final String entryPoint in entryPoints) {
|
|
await flutter('drive', options: <String>['--verbose', '-d', deviceId, entryPoint]);
|
|
}
|
|
});
|
|
|
|
return new TaskResult.success(<String, dynamic>{});
|
|
}
|