Unverified Commit 1a685e03 authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

Improve downgrade-upgrade integration test (#53775)

parent 6fddb7ee
...@@ -12,8 +12,8 @@ import 'package:process/process.dart'; ...@@ -12,8 +12,8 @@ import 'package:process/process.dart';
import '../src/common.dart'; import '../src/common.dart';
const String _kInitialVersion = 'v1.9.1+hotfix.6'; const String _kInitialVersion = 'v1.9.1';
const String _kBranch = 'stable'; const String _kBranch = 'dev';
const FileSystem fileSystem = LocalFileSystem(); const FileSystem fileSystem = LocalFileSystem();
const ProcessManager processManager = LocalProcessManager(); const ProcessManager processManager = LocalProcessManager();
final Stdio stdio = Stdio(); final Stdio stdio = Stdio();
...@@ -50,20 +50,23 @@ void main() { ...@@ -50,20 +50,23 @@ void main() {
final Directory testDirectory = parentDirectory.childDirectory('flutter'); final Directory testDirectory = parentDirectory.childDirectory('flutter');
testDirectory.createSync(recursive: true); testDirectory.createSync(recursive: true);
int exitCode = 0;
// Enable longpaths for windows integration test. // Enable longpaths for windows integration test.
await processManager.run(<String>[ await processManager.run(<String>[
'git', 'config', '--system', 'core.longpaths', 'true', 'git', 'config', '--system', 'core.longpaths', 'true',
]); ]);
// Step 1. Clone the dev branch of flutter into the test directory. // Step 1. Clone the dev branch of flutter into the test directory.
await processUtils.stream(<String>[ exitCode = await processUtils.stream(<String>[
'git', 'git',
'clone', 'clone',
'https://github.com/flutter/flutter.git', 'https://github.com/flutter/flutter.git',
], workingDirectory: parentDirectory.path, trace: true); ], workingDirectory: parentDirectory.path, trace: true);
expect(exitCode, 0);
// Step 2. Switch to the dev branch. // Step 2. Switch to the dev branch.
await processUtils.stream(<String>[ exitCode = await processUtils.stream(<String>[
'git', 'git',
'checkout', 'checkout',
'--track', '--track',
...@@ -71,22 +74,26 @@ void main() { ...@@ -71,22 +74,26 @@ void main() {
_kBranch, _kBranch,
'origin/$_kBranch', 'origin/$_kBranch',
], workingDirectory: testDirectory.path, trace: true); ], workingDirectory: testDirectory.path, trace: true);
expect(exitCode, 0);
// Step 3. Revert to a prior version. // Step 3. Revert to a prior version.
await processUtils.stream(<String>[ exitCode = await processUtils.stream(<String>[
'git', 'git',
'reset', 'reset',
'--hard', '--hard',
_kInitialVersion, _kInitialVersion,
], workingDirectory: testDirectory.path, trace: true); ], workingDirectory: testDirectory.path, trace: true);
expect(exitCode, 0);
// Step 4. Upgrade to the newest dev. This should update the persistent // Step 4. Upgrade to the newest dev. This should update the persistent
// tool state with the sha for v1.14.3 // tool state with the sha for v1.14.3
await processUtils.stream(<String>[ exitCode = await processUtils.stream(<String>[
flutterBin, flutterBin,
'upgrade', 'upgrade',
'--verbose',
'--working-directory=${testDirectory.path}' '--working-directory=${testDirectory.path}'
], workingDirectory: testDirectory.path, trace: true); ], workingDirectory: testDirectory.path, trace: true);
expect(exitCode, 0);
// Step 5. Verify that the version is different. // Step 5. Verify that the version is different.
final RunResult versionResult = await processUtils.run(<String>[ final RunResult versionResult = await processUtils.run(<String>[
...@@ -101,12 +108,13 @@ void main() { ...@@ -101,12 +108,13 @@ void main() {
expect(versionResult.stdout, isNot(contains(_kInitialVersion))); expect(versionResult.stdout, isNot(contains(_kInitialVersion)));
// Step 6. Downgrade back to initial version. // Step 6. Downgrade back to initial version.
await processUtils.stream(<String>[ exitCode = await processUtils.stream(<String>[
flutterBin, flutterBin,
'downgrade', 'downgrade',
'--no-prompt', '--no-prompt',
'--working-directory=${testDirectory.path}' '--working-directory=${testDirectory.path}'
], workingDirectory: testDirectory.path, trace: true); ], workingDirectory: testDirectory.path, trace: true);
expect(exitCode, 0);
// Step 7. Verify downgraded version matches original version. // Step 7. Verify downgraded version matches original version.
final RunResult oldVersionResult = await processUtils.run(<String>[ final RunResult oldVersionResult = await processUtils.run(<String>[
......
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