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

Side by Side Diff: tests/standalone/src/io/HttpServerTest.dart

Issue 10119005: Add HTTP handler registration to the HTTP server (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #import("dart:io"); 5 #import("dart:io");
6 #import("dart:isolate"); 6 #import("dart:isolate");
7 7
8 void testListenOn() { 8 void testListenOn() {
9 ServerSocket socket = new ServerSocket("127.0.0.1", 0, 5); 9 ServerSocket socket = new ServerSocket("127.0.0.1", 0, 5);
10 10
11 socket.onError = (Exception e) { 11 socket.onError = (Exception e) {
12 Expect.fail("ServerSocket closed unexpected"); 12 Expect.fail("ServerSocket closed unexpected");
13 }; 13 };
14 14
15 void test(void onDone()) { 15 void test(void onDone()) {
16 HttpServer server = new HttpServer(); 16 HttpServer server = new HttpServer();
17 Expect.throws(() => server.port); 17 Expect.throws(() => server.port);
18 18
19 ReceivePort serverPort = new ReceivePort(); 19 ReceivePort serverPort = new ReceivePort();
20 server.onRequest = (HttpRequest request, HttpResponse response) { 20 server.defaultRequestHandler =
21 request.inputStream.onClosed = () { 21 (HttpRequest request, HttpResponse response) {
22 response.outputStream.close(); 22 request.inputStream.onClosed = () {
23 serverPort.close(); 23 response.outputStream.close();
24 }; 24 serverPort.close();
25 };
25 }; 26 };
26 27
27 server.onError = (Exception e) { 28 server.onError = (Exception e) {
28 Expect.fail("Unexpected error in Http Server: $e"); 29 Expect.fail("Unexpected error in Http Server: $e");
29 }; 30 };
30 31
31 server.listenOn(socket); 32 server.listenOn(socket);
32 Expect.equals(socket.port, server.port); 33 Expect.equals(socket.port, server.port);
33 34
34 HttpClient client = new HttpClient(); 35 HttpClient client = new HttpClient();
(...skipping 20 matching lines...) Expand all
55 test(() { 56 test(() {
56 test(() { 57 test(() {
57 socket.close(); 58 socket.close();
58 }); 59 });
59 }); 60 });
60 } 61 }
61 62
62 void main() { 63 void main() {
63 testListenOn(); 64 testListenOn();
64 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698