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

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

Issue 23625002: Support loading transformer plugins from pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. 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
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.
///
« no previous file with comments | « sdk/lib/_internal/pub/test/serve/runs_a_transform_on_a_dependency_test.dart ('k') | sdk/lib/_internal/pub/test/test_pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698