Unverified Commit c17099f4 authored by xster's avatar xster Committed by GitHub

Leave a version tag when creating project (#12846)

* Leave a version tag when creating project

* Generalize .version to .metadata
parent b865b0eb
...@@ -24,6 +24,7 @@ import '../ios/xcodeproj.dart'; ...@@ -24,6 +24,7 @@ import '../ios/xcodeproj.dart';
import '../plugins.dart'; import '../plugins.dart';
import '../runner/flutter_command.dart'; import '../runner/flutter_command.dart';
import '../template.dart'; import '../template.dart';
import '../version.dart';
class CreateCommand extends FlutterCommand { class CreateCommand extends FlutterCommand {
CreateCommand() { CreateCommand() {
...@@ -298,6 +299,8 @@ To edit platform code in an IDE see https://flutter.io/platform-plugins/#edit-co ...@@ -298,6 +299,8 @@ To edit platform code in an IDE see https://flutter.io/platform-plugins/#edit-co
'withPluginHook': withPluginHook, 'withPluginHook': withPluginHook,
'androidLanguage': androidLanguage, 'androidLanguage': androidLanguage,
'iosLanguage': iosLanguage, 'iosLanguage': iosLanguage,
'flutterRevision': FlutterVersion.instance.frameworkRevision,
'flutterChannel': FlutterVersion.instance.channel,
}; };
} }
......
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: {{flutterRevision}}
channel: {{flutterChannel}}
...@@ -12,15 +12,21 @@ import 'package:flutter_tools/src/base/io.dart'; ...@@ -12,15 +12,21 @@ import 'package:flutter_tools/src/base/io.dart';
import 'package:flutter_tools/src/cache.dart'; import 'package:flutter_tools/src/cache.dart';
import 'package:flutter_tools/src/commands/create.dart'; import 'package:flutter_tools/src/commands/create.dart';
import 'package:flutter_tools/src/dart/sdk.dart'; import 'package:flutter_tools/src/dart/sdk.dart';
import 'package:flutter_tools/src/version.dart';
import 'package:mockito/mockito.dart';
import 'package:test/test.dart'; import 'package:test/test.dart';
import '../src/common.dart'; import '../src/common.dart';
import '../src/context.dart'; import '../src/context.dart';
const String frameworkRevision = '12345678';
const String frameworkChannel = 'omega';
void main() { void main() {
group('create', () { group('create', () {
Directory temp; Directory temp;
Directory projectDir; Directory projectDir;
FlutterVersion mockFlutterVersion;
setUpAll(() { setUpAll(() {
Cache.disableLocking(); Cache.disableLocking();
...@@ -29,6 +35,7 @@ void main() { ...@@ -29,6 +35,7 @@ void main() {
setUp(() { setUp(() {
temp = fs.systemTempDirectory.createTempSync('flutter_tools'); temp = fs.systemTempDirectory.createTempSync('flutter_tools');
projectDir = temp.childDirectory('flutter_project'); projectDir = temp.childDirectory('flutter_project');
mockFlutterVersion = new MockFlutterVersion();
}); });
tearDown(() { tearDown(() {
...@@ -171,6 +178,8 @@ void main() { ...@@ -171,6 +178,8 @@ void main() {
// Verify content and formatting // Verify content and formatting
testUsingContext('content', () async { testUsingContext('content', () async {
Cache.flutterRoot = '../..'; Cache.flutterRoot = '../..';
when(mockFlutterVersion.frameworkRevision).thenReturn(frameworkRevision);
when(mockFlutterVersion.channel).thenReturn(frameworkChannel);
final CreateCommand command = new CreateCommand(); final CreateCommand command = new CreateCommand();
final CommandRunner<Null> runner = createTestCommandRunner(command); final CommandRunner<Null> runner = createTestCommandRunner(command);
...@@ -229,6 +238,16 @@ void main() { ...@@ -229,6 +238,16 @@ void main() {
final File xcodeProjectFile = fs.file(fs.path.join(projectDir.path, xcodeProjectPath)); final File xcodeProjectFile = fs.file(fs.path.join(projectDir.path, xcodeProjectPath));
final String xcodeProject = xcodeProjectFile.readAsStringSync(); final String xcodeProject = xcodeProjectFile.readAsStringSync();
expect(xcodeProject, contains('PRODUCT_BUNDLE_IDENTIFIER = com.foo.bar.flutterProject')); expect(xcodeProject, contains('PRODUCT_BUNDLE_IDENTIFIER = com.foo.bar.flutterProject'));
final String versionPath = fs.path.join('.metadata');
expectExists(versionPath);
final String version = fs.file(fs.path.join(projectDir.path, versionPath)).readAsStringSync();
expect(version, contains('version:'));
expect(version, contains('revision: 12345678'));
expect(version, contains('channel: omega'));
},
overrides: <Type, Generator>{
FlutterVersion: () => mockFlutterVersion,
}); });
// Verify that we can regenerate over an existing project. // Verify that we can regenerate over an existing project.
...@@ -334,3 +353,5 @@ Future<Null> _analyzeProject(String workingDir, {String target}) async { ...@@ -334,3 +353,5 @@ Future<Null> _analyzeProject(String workingDir, {String target}) async {
} }
expect(exec.exitCode, 0); expect(exec.exitCode, 0);
} }
class MockFlutterVersion extends Mock implements FlutterVersion {}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment