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

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

Issue 64723005: Use the polling watcher by default in pub tests for now. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 import 'dart:convert'; 8 import 'dart:convert';
9 import 'dart:io'; 9 import 'dart:io';
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 transform.addOutput(new Asset.fromString(transform.primaryInput.id, 85 transform.addOutput(new Asset.fromString(transform.primaryInput.id,
86 contents.replaceAllMapped(_tokenRegExp, (match) { 86 contents.replaceAllMapped(_tokenRegExp, (match) {
87 return 'const TOKEN = "(\${match[1]}, \$TOKEN)";'; 87 return 'const TOKEN = "(\${match[1]}, \$TOKEN)";';
88 }))); 88 })));
89 }); 89 });
90 } 90 }
91 } 91 }
92 """; 92 """;
93 } 93 }
94 94
95 /// Schedules starting the "pub serve" process. 95 /// Schedules starting the `pub serve` process.
96 /// 96 ///
97 /// If [shouldGetFirst] is `true`, validates that pub get is run first. If 97 /// Unlike [pubServe], this doesn't determine the port number of the server, and
98 /// [dart2js] is `false`, does not compile Dart entrypoints in "web" to 98 /// so may be used to test for errors in the initialization process.
99 /// JavaScript.
100 /// 99 ///
101 /// Returns the `pub serve` process. 100 /// Returns the `pub serve` process.
102 ScheduledProcess startPubServe({bool shouldGetFirst: false, 101 ScheduledProcess startPubServe([Iterable<String> args]) {
103 Iterable<String> args}) {
104 // Use port 0 to get an ephemeral port. 102 // Use port 0 to get an ephemeral port.
105 var pubArgs = ["serve", "--port=0", "--hostname=127.0.0.1"]; 103 var pubArgs = ["serve", "--port=0", "--hostname=127.0.0.1", "--force-poll"];
106 104
107 if (args != null) pubArgs.addAll(args); 105 if (args != null) pubArgs.addAll(args);
108 106
109 // Dart2js can take a long time to compile dart code, so we increase the 107 // Dart2js can take a long time to compile dart code, so we increase the
110 // timeout to cope with that. 108 // timeout to cope with that.
111 currentSchedule.timeout = new Duration(seconds: 15); 109 currentSchedule.timeout = new Duration(seconds: 15);
112 110
113 _pubServer = startPub(args: pubArgs); 111 return startPub(args: pubArgs);
112 }
113
114 /// Schedules starting the "pub serve" process and records its port number for
115 /// future requests.
116 ///
117 /// If [shouldGetFirst] is `true`, validates that pub get is run first. If
118 /// [dart2js] is `false`, does not compile Dart entrypoints in "web" to
Bob Nystrom 2013/11/08 01:32:32 Remove bit about dart2js (oops, my fault for leavi
nweiz 2013/11/08 01:44:24 Done.
119 /// JavaScript.
120 ///
121 /// Returns the `pub serve` process.
122 ScheduledProcess pubServe({bool shouldGetFirst: false,
123 Iterable<String> args}) {
124 _pubServer = startPubServe(args);
114 125
115 currentSchedule.onComplete.schedule(() { 126 currentSchedule.onComplete.schedule(() {
116 if (_webSocket != null) { 127 if (_webSocket != null) {
117 _webSocket.close(); 128 _webSocket.close();
118 _webSocket = null; 129 _webSocket = null;
119 _webSocketBroadcastStream = null; 130 _webSocketBroadcastStream = null;
120 } 131 }
121 }); 132 });
122 133
123 if (shouldGetFirst) { 134 if (shouldGetFirst) {
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 /// socket. It omitted, request is JSON encoded to a string first. 233 /// socket. It omitted, request is JSON encoded to a string first.
223 void webSocketShouldReply(request, expectation, {bool encodeRequest: true}) { 234 void webSocketShouldReply(request, expectation, {bool encodeRequest: true}) {
224 schedule(() => _ensureWebSocket().then((_) { 235 schedule(() => _ensureWebSocket().then((_) {
225 if (encodeRequest) request = JSON.encode(request); 236 if (encodeRequest) request = JSON.encode(request);
226 _webSocket.add(request); 237 _webSocket.add(request);
227 return _webSocketBroadcastStream.first.then((value) { 238 return _webSocketBroadcastStream.first.then((value) {
228 expect(JSON.decode(value), expectation); 239 expect(JSON.decode(value), expectation);
229 }); 240 });
230 }), "send $request to web socket and expect reply that $expectation"); 241 }), "send $request to web socket and expect reply that $expectation");
231 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698