OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 library pub_tests; | 5 library pub_tests; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
10 import 'package:scheduled_test/scheduled_process.dart'; | 10 import 'package:scheduled_test/scheduled_process.dart'; |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 var match = new RegExp(r"127\.0\.0\.1:(\d+)").firstMatch(line); | 113 var match = new RegExp(r"127\.0\.0\.1:(\d+)").firstMatch(line); |
114 assert(match != null); | 114 assert(match != null); |
115 _port = int.parse(match[1]); | 115 _port = int.parse(match[1]); |
116 } | 116 } |
117 | 117 |
118 void endPubServe() { | 118 void endPubServe() { |
119 _pubServer.kill(); | 119 _pubServer.kill(); |
120 } | 120 } |
121 | 121 |
122 /// Schedules an HTTP request to the running pub server with [urlPath] and | 122 /// Schedules an HTTP request to the running pub server with [urlPath] and |
123 /// verifies that it responds with [expected]. | 123 /// verifies that it responds with a body that matches [expectation]. |
124 void requestShouldSucceed(String urlPath, String expected) { | 124 /// |
| 125 /// [expectation] may either be a [Matcher] or a string to match an exact body. |
| 126 void requestShouldSucceed(String urlPath, expectation) { |
125 schedule(() { | 127 schedule(() { |
126 return http.get("http://127.0.0.1:$_port/$urlPath").then((response) { | 128 return http.get("http://127.0.0.1:$_port/$urlPath").then((response) { |
127 expect(response.body, equals(expected)); | 129 expect(response.body, expectation); |
128 }); | 130 }); |
129 }, "request $urlPath"); | 131 }, "request $urlPath"); |
130 } | 132 } |
131 | 133 |
132 /// Schedules an HTTP request to the running pub server with [urlPath] and | 134 /// Schedules an HTTP request to the running pub server with [urlPath] and |
133 /// verifies that it responds with a 404. | 135 /// verifies that it responds with a 404. |
134 void requestShould404(String urlPath) { | 136 void requestShould404(String urlPath) { |
135 schedule(() { | 137 schedule(() { |
136 return http.get("http://127.0.0.1:$_port/$urlPath").then((response) { | 138 return http.get("http://127.0.0.1:$_port/$urlPath").then((response) { |
137 expect(response.statusCode, equals(404)); | 139 expect(response.statusCode, equals(404)); |
(...skipping 21 matching lines...) Expand all Loading... |
159 return _pubServer.nextLine().then((line) { | 161 return _pubServer.nextLine().then((line) { |
160 if (line.contains("successfully")) return; | 162 if (line.contains("successfully")) return; |
161 | 163 |
162 // This line wasn't it, so ignore it and keep trying. | 164 // This line wasn't it, so ignore it and keep trying. |
163 return nextLine(); | 165 return nextLine(); |
164 }); | 166 }); |
165 } | 167 } |
166 | 168 |
167 schedule(nextLine); | 169 schedule(nextLine); |
168 } | 170 } |
OLD | NEW |