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

Unified Diff: test/io_server_test.dart

Issue 1411553006: Add a Server interface. (Closed) Base URL: git@github.com:dart-lang/shelf@master
Patch Set: Code review changes Created 5 years, 2 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
« no previous file with comments | « pubspec.yaml ('k') | test/server_handler_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/io_server_test.dart
diff --git a/test/io_server_test.dart b/test/io_server_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..7f35323eed25a0d58d190edf35859226ade6ffd9
--- /dev/null
+++ b/test/io_server_test.dart
@@ -0,0 +1,41 @@
+// Copyright (c) 2015, 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.
+
+@TestOn('vm')
+
+import 'dart:async';
+import 'dart:io';
+
+import 'package:http/http.dart' as http;
+import 'package:shelf/shelf_io.dart';
+import 'package:test/test.dart';
+
+import 'test_util.dart';
+
+void main() {
+ var server;
+ setUp(() async {
+ server = await IOServer.bind(InternetAddress.LOOPBACK_IP_V4, 0);
+ });
+
+ tearDown(() => server.close());
+
+ test("serves HTTP requests with the mounted handler", () async {
+ server.mount(syncHandler);
+ expect(await http.read(server.url), equals('Hello from /'));
+ });
+
+ test("delays HTTP requests until a handler is mounted", () async {
+ expect(http.read(server.url), completion(equals('Hello from /')));
+ await new Future.delayed(Duration.ZERO);
+
+ server.mount(asyncHandler);
+ });
+
+ test("disallows more than one handler from being mounted", () async {
+ server.mount((_) {});
+ expect(() => server.mount((_) {}), throwsStateError);
+ expect(() => server.mount((_) {}), throwsStateError);
+ });
+}
« no previous file with comments | « pubspec.yaml ('k') | test/server_handler_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698