Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Unified Diff: test/closed_stream_sink_test.dart

Issue 1615253002: Add ClosedStreamSink, and *Completer.setError, and StreamSinkCompleter.fromFuture. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/closed_stream_sink_test.dart
diff --git a/test/closed_stream_sink_test.dart b/test/closed_stream_sink_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..03286b132d09ae35aa4e769f5954c8cbbe47047f
--- /dev/null
+++ b/test/closed_stream_sink_test.dart
@@ -0,0 +1,99 @@
+// Copyright (c) 2016, 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 "dart:async";
+
+import "package:async/async.dart";
+import "package:test/test.dart";
+
+import "utils.dart";
+
+void main() {
+ group("constructors", () {
+ test("done defaults to a completed future", () {
+ var sink = new ClosedStreamSink();
+ expect(sink.done, completes);
+ });
+
+ test("a custom future may be passed to done", () async {
+ var completer = new Completer();
+ var sink = new ClosedStreamSink(done: completer.future);
+
+ var doneFired = false;
+ sink.done.then((_) {
+ doneFired = true;
+ });
+ await flushMicrotasks();
+ expect(doneFired, isFalse);
+
+ completer.complete();
+ await flushMicrotasks();
+ expect(doneFired, isTrue);
+ });
+
+ test("ClosedStreamSink.error passes an error to done", () {
+ var sink = new ClosedStreamSink.error("oh no");
+ expect(sink.done, throwsA("oh no"));
+ });
+ });
+
+ group("events", () {
+ test("are silently dropped before close", () {
+ var sink = new ClosedStreamSink();
+ sink.add(1);
+ sink.addError("oh no");
+ });
+
+ test("throw StateErrors after close", () {
+ var sink = new ClosedStreamSink();
+ expect(sink.close(), completes);
+
+ expect(() => sink.add(1), throwsStateError);
+ expect(() => sink.addError("oh no"), throwsStateError);
+ expect(() => sink.addStream(new Stream.empty()), throwsStateError);
+ });
+
+ group("addStream", () {
+ test("listens to the stream then cancels immediately", () async {
+ var sink = new ClosedStreamSink();
+ var canceled = false;
+ var controller = new StreamController(onCancel: () {
+ canceled = true;
+ });
+
+ expect(sink.addStream(controller.stream), completes);
+ await flushMicrotasks();
+ expect(canceled, isTrue);
+ });
+
+ test("returns the cancel future", () async {
+ var completer = new Completer();
+ var sink = new ClosedStreamSink();
+ var controller = new StreamController(onCancel: () => completer.future);
+
+ var addStreamFired = false;
+ sink.addStream(controller.stream).then((_) {
+ addStreamFired = true;
+ });
+ await flushMicrotasks();
+ expect(addStreamFired, isFalse);
+
+ completer.complete();
+ await flushMicrotasks();
+ expect(addStreamFired, isTrue);
+ });
+
+ test("pipes errors from the cancel future through addStream", () async {
+ var sink = new ClosedStreamSink();
+ var controller = new StreamController(onCancel: () => throw "oh no");
+ expect(sink.addStream(controller.stream), throwsA("oh no"));
+ });
Lasse Reichstein Nielsen 2016/01/22 09:13:47 Test that calling add, addError, addStream and clo
nweiz 2016/01/25 22:39:25 Done.
+ });
+ });
+
+ test("close returns the done future", () {
+ var sink = new ClosedStreamSink.error("oh no");
+ expect(sink.close(), throwsA("oh no"));
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698