Index: sdk/lib/_internal/pub/test/serve/utils.dart |
diff --git a/sdk/lib/_internal/pub/test/serve/utils.dart b/sdk/lib/_internal/pub/test/serve/utils.dart |
index 128917a1a0c1fdcca6b87559f22e640ee6bf2b24..504663808baee9155235e0e6e43b7e30660646cb 100644 |
--- a/sdk/lib/_internal/pub/test/serve/utils.dart |
+++ b/sdk/lib/_internal/pub/test/serve/utils.dart |
@@ -18,10 +18,33 @@ ScheduledProcess _pubServer; |
/// The ephemeral port assigned to the running server. |
int _port; |
+/// The code for a transformer that renames ".txt" files to ".out" and adds a |
+/// ".out" suffix. |
+const REWRITE_TRANSFORMER = """ |
+import 'dart:async'; |
+ |
+import 'package:barback/barback.dart'; |
+ |
+class RewriteTransformer extends Transformer { |
+ RewriteTransformer(); |
+ |
+ String get allowedExtensions => '.txt'; |
+ |
+ Future apply(Transform transform) { |
+ return transform.primaryInput.readAsString().then((contents) { |
+ var id = transform.primaryInput.id.changeExtension(".out"); |
+ transform.addOutput(new Asset.fromString(id, "\$contents.out")); |
+ }); |
+ } |
+} |
+"""; |
+ |
/// Schedules starting the "pub serve" process. |
/// |
/// If [shouldInstallFirst] is `true`, validates that pub install is run first. |
-void startPubServe({bool shouldInstallFirst: false}) { |
+/// |
+/// Returns the `pub serve` process. |
+ScheduledProcess startPubServe({bool shouldInstallFirst: false}) { |
// Use port 0 to get an ephemeral port. |
_pubServer = startPub(args: ["serve", "--port=0"]); |
@@ -35,6 +58,7 @@ void startPubServe({bool shouldInstallFirst: false}) { |
} |
expect(_pubServer.nextLine().then(_parsePort), completes); |
+ return _pubServer; |
} |
/// Parses the port number from the "Serving blah on localhost:1234" line |
@@ -69,6 +93,16 @@ void requestShould404(String urlPath) { |
}, "request $urlPath"); |
} |
+/// Schedules an HTTP POST to the running pub server with [urlPath] and verifies |
+/// that it responds with a 405. |
+void postShould405(String urlPath) { |
+ schedule(() { |
+ return http.post("http://localhost:$_port/$urlPath").then((response) { |
+ expect(response.statusCode, equals(405)); |
+ }); |
+ }, "request $urlPath"); |
+} |
+ |
/// Reads lines from pub serve's stdout until it prints the build success |
/// message. |
/// |