
This reverts commit e438632165818fb06b7c58ea846fe781d9d17642 because it breaks 160 benchmarks, and several devicelab tests, due to changing the format of the output.
70 lines
2.0 KiB
Dart
70 lines
2.0 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 'package:flutter_tools/src/base/terminal.dart';
|
|
|
|
import '../src/common.dart';
|
|
import '../src/context.dart';
|
|
|
|
void main() {
|
|
group('character input prompt', () {
|
|
AnsiTerminal terminalUnderTest;
|
|
|
|
setUp(() {
|
|
terminalUnderTest = TestTerminal();
|
|
});
|
|
|
|
testUsingContext('character prompt', () async {
|
|
mockStdInStream = Stream<String>.fromFutures(<Future<String>>[
|
|
Future<String>.value('d'), // Not in accepted list.
|
|
Future<String>.value('\n'), // Not in accepted list
|
|
Future<String>.value('b'),
|
|
]).asBroadcastStream();
|
|
final String choice =
|
|
await terminalUnderTest.promptForCharInput(
|
|
<String>['a', 'b', 'c'],
|
|
prompt: 'Please choose something',
|
|
);
|
|
expect(choice, 'b');
|
|
expect(
|
|
testLogger.statusText,
|
|
'Please choose something [a|b|c]: d\n'
|
|
'Please choose something [a|b|c]: \n'
|
|
'\n'
|
|
'Please choose something [a|b|c]: b\n'
|
|
);
|
|
});
|
|
|
|
testUsingContext('default character choice without displayAcceptedCharacters', () async {
|
|
mockStdInStream = Stream<String>.fromFutures(<Future<String>>[
|
|
Future<String>.value('\n'), // Not in accepted list
|
|
]).asBroadcastStream();
|
|
final String choice =
|
|
await terminalUnderTest.promptForCharInput(
|
|
<String>['a', 'b', 'c'],
|
|
prompt: 'Please choose something',
|
|
displayAcceptedCharacters: false,
|
|
defaultChoiceIndex: 1, // which is b.
|
|
);
|
|
expect(choice, 'b');
|
|
expect(
|
|
testLogger.statusText,
|
|
'Please choose something: \n'
|
|
'\n'
|
|
);
|
|
});
|
|
});
|
|
}
|
|
|
|
Stream<String> mockStdInStream;
|
|
|
|
class TestTerminal extends AnsiTerminal {
|
|
@override
|
|
Stream<String> get onCharInput {
|
|
return mockStdInStream;
|
|
}
|
|
}
|