mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
56 lines
1.8 KiB
Dart
56 lines
1.8 KiB
Dart
// Copyright 2015 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:io';
|
|
|
|
import 'package:args/command_runner.dart';
|
|
import 'package:path/path.dart' as p;
|
|
import 'package:flutter_tools/src/artifacts.dart';
|
|
import 'package:flutter_tools/src/commands/init.dart';
|
|
import 'package:flutter_tools/src/process.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
main() => defineTests();
|
|
|
|
defineTests() {
|
|
group('init', () {
|
|
Directory temp;
|
|
|
|
setUp(() {
|
|
temp = Directory.systemTemp.createTempSync('flutter_tools');
|
|
});
|
|
|
|
tearDown(() {
|
|
temp.deleteSync(recursive: true);
|
|
});
|
|
|
|
// This test consistently times out on our windows bot. The code is already
|
|
// covered on the linux one.
|
|
if (!Platform.isWindows) {
|
|
// Verify that we create a project that is well-formed.
|
|
test('flutter-simple', () async {
|
|
ArtifactStore.flutterRoot = '../..';
|
|
InitCommand command = new InitCommand();
|
|
CommandRunner runner = new CommandRunner('test_flutter', '')
|
|
..addCommand(command);
|
|
await runner.run(['init', '--out', temp.path])
|
|
.then((int code) => expect(code, equals(0)));
|
|
|
|
String path = p.join(temp.path, 'lib', 'main.dart');
|
|
expect(new File(path).existsSync(), true);
|
|
ProcessResult exec = Process.runSync(
|
|
sdkBinaryName('dartanalyzer'), ['--fatal-warnings', path],
|
|
workingDirectory: temp.path);
|
|
if (exec.exitCode != 0) {
|
|
print(exec.stdout);
|
|
print(exec.stderr);
|
|
}
|
|
expect(exec.exitCode, 0);
|
|
},
|
|
// This test can take a while due to network requests.
|
|
timeout: new Timeout(new Duration(minutes: 2)));
|
|
}
|
|
});
|
|
}
|