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

Unified Diff: sdk/lib/_internal/pub/test/serve/utils.dart

Issue 24429005: Revert revision 27860 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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 | « sdk/lib/_internal/pub/lib/src/command/serve.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/serve/utils.dart
===================================================================
--- sdk/lib/_internal/pub/test/serve/utils.dart (revision 27864)
+++ sdk/lib/_internal/pub/test/serve/utils.dart (working copy)
@@ -92,7 +92,7 @@
/// Returns the `pub serve` process.
ScheduledProcess startPubServe({bool shouldInstallFirst: false}) {
// Use port 0 to get an ephemeral port.
- _pubServer = startPub(args: ["serve", "--port=0", "--hostname=127.0.0.1"]);
+ _pubServer = startPub(args: ["serve", "--port=0"]);
if (shouldInstallFirst) {
expect(_pubServer.nextLine(),
@@ -107,10 +107,10 @@
return _pubServer;
}
-/// Parses the port number from the "Serving blah on 127.0.0.1:1234" line
+/// Parses the port number from the "Serving blah on localhost:1234" line
/// printed by pub serve.
void _parsePort(String line) {
- var match = new RegExp(r"127\.0\.0\.1:(\d+)").firstMatch(line);
+ var match = new RegExp(r"localhost:(\d+)").firstMatch(line);
assert(match != null);
_port = int.parse(match[1]);
}
@@ -123,7 +123,7 @@
/// verifies that it responds with [expected].
void requestShouldSucceed(String urlPath, String expected) {
schedule(() {
- return http.get("http://127.0.0.1:$_port/$urlPath").then((response) {
+ return http.get("http://localhost:$_port/$urlPath").then((response) {
expect(response.body, equals(expected));
});
}, "request $urlPath");
@@ -133,7 +133,7 @@
/// verifies that it responds with a 404.
void requestShould404(String urlPath) {
schedule(() {
- return http.get("http://127.0.0.1:$_port/$urlPath").then((response) {
+ return http.get("http://localhost:$_port/$urlPath").then((response) {
expect(response.statusCode, equals(404));
});
}, "request $urlPath");
@@ -143,7 +143,7 @@
/// that it responds with a 405.
void postShould405(String urlPath) {
schedule(() {
- return http.post("http://127.0.0.1:$_port/$urlPath").then((response) {
+ return http.post("http://localhost:$_port/$urlPath").then((response) {
expect(response.statusCode, equals(405));
});
}, "request $urlPath");
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/serve.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698