82c8c78739
BUG= http://dartbug.com/36965 Change-Id: I5dd156a635c1750d136206b030ee71a78b0e2ad3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/102369 Commit-Queue: Lasse R.H. Nielsen <lrn@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
104 lines
3.5 KiB
Dart
104 lines
3.5 KiB
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'package:expect/expect.dart';
|
|
import 'dart:async';
|
|
|
|
_defaultData(x) {}
|
|
_defaultError(e, [st]) {}
|
|
_defaultDone() {}
|
|
|
|
/// Dummy StreamSubscription.
|
|
class MyStreamSubscription<T> implements StreamSubscription<T> {
|
|
final Stream stream;
|
|
final bool cancelOnError;
|
|
Function handleData = null;
|
|
Function handleError = null;
|
|
Function handleDone = null;
|
|
|
|
MyStreamSubscription(this.stream, this.cancelOnError);
|
|
|
|
Future cancel() => null;
|
|
void onData(void handleData(T data)) {
|
|
this.handleData = handleData == null ? _defaultData : handleData;
|
|
}
|
|
|
|
void onError(Function handleError) {
|
|
this.handleError = handleError == null ? _defaultError : handleError;
|
|
}
|
|
|
|
void onDone(void handleDone()) {
|
|
this.handleDone = handleDone == null ? _defaultDone : handleDone;
|
|
}
|
|
|
|
void pause([Future resumeSignal]) {}
|
|
void resume() {}
|
|
|
|
final isPaused = false;
|
|
Future<E> asFuture<E>([E futureValue]) => null;
|
|
}
|
|
|
|
main() {
|
|
var transformer = new StreamTransformer<int, String>(
|
|
(stream, cancelOnError) =>
|
|
new MyStreamSubscription(stream, cancelOnError));
|
|
|
|
var controller = new StreamController<int>(sync: true);
|
|
var stream = controller.stream;
|
|
var transformed = stream.transform(transformer);
|
|
|
|
Expect.isFalse(transformed.isBroadcast);
|
|
|
|
var handleData = (String _) => 499;
|
|
var handleError = (e, st) => 42;
|
|
var handleDone = () => 99;
|
|
|
|
MyStreamSubscription<String> subscription =
|
|
transformed.listen(handleData, onError: handleError, onDone: handleDone);
|
|
|
|
Expect.identical(stream, subscription.stream);
|
|
Expect.equals(false, subscription.cancelOnError);
|
|
Expect.identical(handleData, subscription.handleData);
|
|
Expect.identical(handleError, subscription.handleError);
|
|
Expect.identical(handleDone, subscription.handleDone);
|
|
|
|
// Note that we reuse the transformer.
|
|
|
|
controller = new StreamController(sync: true);
|
|
stream = controller.stream;
|
|
transformed = stream.transform(transformer);
|
|
subscription = transformed.listen(null);
|
|
|
|
Expect.identical(stream, subscription.stream);
|
|
Expect.equals(false, subscription.cancelOnError);
|
|
Expect.identical(_defaultData, subscription.handleData);
|
|
Expect.identical(_defaultError, subscription.handleError);
|
|
Expect.identical(_defaultDone, subscription.handleDone);
|
|
|
|
controller = new StreamController(sync: true);
|
|
stream = controller.stream;
|
|
transformed = stream.transform(transformer);
|
|
subscription =
|
|
transformed.listen(null, onDone: handleDone, cancelOnError: true);
|
|
|
|
Expect.identical(stream, subscription.stream);
|
|
Expect.equals(true, subscription.cancelOnError);
|
|
Expect.identical(_defaultData, subscription.handleData);
|
|
Expect.identical(_defaultError, subscription.handleError);
|
|
Expect.identical(handleDone, subscription.handleDone);
|
|
|
|
controller = new StreamController.broadcast(sync: true);
|
|
stream = controller.stream;
|
|
transformed = stream.transform(transformer);
|
|
Expect.isTrue(transformed.isBroadcast);
|
|
subscription =
|
|
transformed.listen(null, onDone: handleDone, cancelOnError: true);
|
|
|
|
Expect.identical(stream, subscription.stream);
|
|
Expect.equals(true, subscription.cancelOnError);
|
|
Expect.identical(_defaultData, subscription.handleData);
|
|
Expect.identical(_defaultError, subscription.handleError);
|
|
Expect.identical(handleDone, subscription.handleDone);
|
|
}
|