Skip to content

Commit 4e50d6a

Browse files
committed
#142: added run_process test
1 parent 58831c2 commit 4e50d6a

File tree

2 files changed

+30
-9
lines changed

2 files changed

+30
-9
lines changed

lib/run_process/run_process.dart

+12-9
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,28 @@ class ProcessRunner {
66
ProcessRunner._();
77

88
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 {
1013
print('\n$command ${args.join(' ')}\n');
1114
final completer = Completer<void>();
1215
final result = await Process.start(
1316
command,
1417
args,
1518
mode: ProcessStartMode.detachedWithStdio,
1619
);
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+
});
2126
subscription.onDone(() {
22-
print(
23-
'======================================================================');
27+
print('======================================================================');
2428
completer.complete();
2529
});
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'));
2831
return completer.future;
2932
}
3033
}

test/run_process_test.dart

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}

0 commit comments

Comments
 (0)