OLD | NEW |
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 /** | 5 /** |
6 * Test infrastructure for testing pub. Unlike typical unit tests, most pub | 6 * Test infrastructure for testing pub. Unlike typical unit tests, most pub |
7 * tests are integration tests that stage some stuff on the file system, run | 7 * tests are integration tests that stage some stuff on the file system, run |
8 * pub, and then validate the results. This library provides an API to build | 8 * pub, and then validate the results. This library provides an API to build |
9 * tests like that. | 9 * tests like that. |
10 */ | 10 */ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 GitRepoDescriptor git(Pattern name, [List<Descriptor> contents]) => | 45 GitRepoDescriptor git(Pattern name, [List<Descriptor> contents]) => |
46 new GitRepoDescriptor(name, contents); | 46 new GitRepoDescriptor(name, contents); |
47 | 47 |
48 /** | 48 /** |
49 * Creates a new [TarFileDescriptor] with [name] and [contents]. | 49 * Creates a new [TarFileDescriptor] with [name] and [contents]. |
50 */ | 50 */ |
51 TarFileDescriptor tar(Pattern name, [List<Descriptor> contents]) => | 51 TarFileDescriptor tar(Pattern name, [List<Descriptor> contents]) => |
52 new TarFileDescriptor(name, contents); | 52 new TarFileDescriptor(name, contents); |
53 | 53 |
54 /** | 54 /** |
55 * The current [HttpServer] created using [serve]. | |
56 */ | |
57 var _server; | |
58 | |
59 /** | |
60 * Creates an HTTP server to serve [contents] as static files. This server will | 55 * Creates an HTTP server to serve [contents] as static files. This server will |
61 * exist only for the duration of the pub run. | 56 * exist only for the duration of the pub run. |
62 * | |
63 * Subsequent calls to [serve] will replace the previous server. | |
64 */ | 57 */ |
65 void serve(String host, int port, [List<Descriptor> contents]) { | 58 void serve(String host, int port, [List<Descriptor> contents]) { |
66 var baseDir = dir("serve-dir", contents); | 59 var baseDir = dir("serve-dir", contents); |
67 if (host == 'localhost') { | 60 if (host == 'localhost') { |
68 host = '127.0.0.1'; | 61 host = '127.0.0.1'; |
69 } | 62 } |
70 | 63 |
71 _schedule((_) { | 64 _schedule((_) { |
72 if (_server != null) _server.close(); | 65 var server = new HttpServer(); |
73 _server = new HttpServer(); | 66 server.defaultRequestHandler = (request, response) { |
74 _server.defaultRequestHandler = (request, response) { | |
75 var path = request.uri.replaceFirst("/", "").split("/"); | 67 var path = request.uri.replaceFirst("/", "").split("/"); |
76 response.persistentConnection = false; | 68 response.persistentConnection = false; |
77 var stream; | 69 var stream; |
78 try { | 70 try { |
79 stream = baseDir.load(path); | 71 stream = baseDir.load(path); |
80 } catch (var e) { | 72 } catch (var e) { |
81 response.statusCode = 404; | 73 response.statusCode = 404; |
82 response.contentLength = 0; | 74 response.contentLength = 0; |
83 response.outputStream.close(); | 75 response.outputStream.close(); |
84 return; | 76 return; |
85 } | 77 } |
86 | 78 |
87 var future = consumeInputStream(stream); | 79 var future = consumeInputStream(stream); |
88 future.then((data) { | 80 future.then((data) { |
89 response.statusCode = 200; | 81 response.statusCode = 200; |
90 response.contentLength = data.length; | 82 response.contentLength = data.length; |
91 response.outputStream.write(data); | 83 response.outputStream.write(data); |
92 response.outputStream.close(); | 84 response.outputStream.close(); |
93 }); | 85 }); |
94 | 86 |
95 future.handleException((e) { | 87 future.handleException((e) { |
96 print("Exception while handling ${request.uri}: $e"); | 88 print("Exception while handling ${request.uri}: $e"); |
97 response.statusCode = 500; | 89 response.statusCode = 500; |
98 response.reasonPhrase = e.message; | 90 response.reasonPhrase = e.message; |
99 response.outputStream.close(); | 91 response.outputStream.close(); |
100 }); | 92 }); |
101 }; | 93 }; |
102 _server.listen(host, port); | 94 server.listen(host, port); |
103 _scheduleCleanup((_) { | 95 _scheduleCleanup((_) => server.close()); |
104 if (_server != null) _server.close(); | |
105 _server = null; | |
106 }); | |
107 | 96 |
108 return new Future.immediate(null); | 97 return new Future.immediate(null); |
109 }); | 98 }); |
110 } | 99 } |
111 | 100 |
112 /** | 101 /** |
113 * Creates an HTTP server that replicates the structure of pub.dartlang.org. | 102 * Creates an HTTP server that replicates the structure of pub.dartlang.org. |
114 * [pubspecs] is a list of YAML-format pubspecs representing the packages to | 103 * [pubspecs] is a list of YAML-format pubspecs representing the packages to |
115 * serve. | 104 * serve. |
116 */ | 105 */ |
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 } | 784 } |
796 | 785 |
797 /** | 786 /** |
798 * Schedules a callback to be called after Pub is run with [runPub], even if it | 787 * Schedules a callback to be called after Pub is run with [runPub], even if it |
799 * fails. | 788 * fails. |
800 */ | 789 */ |
801 void _scheduleCleanup(_ScheduledEvent event) { | 790 void _scheduleCleanup(_ScheduledEvent event) { |
802 if (_scheduledCleanup == null) _scheduledCleanup = []; | 791 if (_scheduledCleanup == null) _scheduledCleanup = []; |
803 _scheduledCleanup.add(event); | 792 _scheduledCleanup.add(event); |
804 } | 793 } |
OLD | NEW |