File tree 2 files changed +30
-9
lines changed
2 files changed +30
-9
lines changed Original file line number Diff line number Diff line change @@ -6,25 +6,28 @@ class ProcessRunner {
6
6
ProcessRunner ._();
7
7
8
8
static Future <void > runProcessVerbose (
9
- String command, List <String > args) async {
9
+ String command,
10
+ List <String > args, [
11
+ void Function (String lines)? onLineWrite,
12
+ ]) async {
10
13
print ('\n $command ${args .join (' ' )}\n ' );
11
14
final completer = Completer <void >();
12
15
final result = await Process .start (
13
16
command,
14
17
args,
15
18
mode: ProcessStartMode .detachedWithStdio,
16
19
);
17
- print (
18
- '======================================================================' );
19
- final subscription = result.stdout
20
- .listen ((codeUnits) => stdout.write (utf8.decode (codeUnits)));
20
+ print ('======================================================================' );
21
+ final subscription = result.stdout.listen ((codeUnits) {
22
+ final line = utf8.decode (codeUnits);
23
+ onLineWrite? .call (line);
24
+ stdout.write (line);
25
+ });
21
26
subscription.onDone (() {
22
- print (
23
- '======================================================================' );
27
+ print ('======================================================================' );
24
28
completer.complete ();
25
29
});
26
- subscription.onError ((dynamic error) =>
27
- completer.completeError ('Failed to complete process run: $error ' ));
30
+ subscription.onError ((dynamic error) => completer.completeError ('Failed to complete process run: $error ' ));
28
31
return completer.future;
29
32
}
30
33
}
Original file line number Diff line number Diff line change
1
+ import 'package:model_generator/run_process/run_process.dart' ;
2
+ import 'package:test/test.dart' ;
3
+
4
+ void main () {
5
+ test ('test run process' , () async {
6
+ final lines = [];
7
+ await ProcessRunner .runProcessVerbose (
8
+ 'echo' ,
9
+ [
10
+ 'hello' ,
11
+ 'world' ,
12
+ ],
13
+ (line) => lines.add (line),
14
+ );
15
+
16
+ expect (lines.join ('\n ' ), 'hello world\n ' );
17
+ });
18
+ }
You can’t perform that action at this time.
0 commit comments