Chromium Code Reviews

Side by Side Diff: test/lish/cloud_storage_upload_provides_an_error_test.dart

Issue 1215833002: Use the new test runner. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS 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 import 'package:pub/src/io.dart'; 5 import 'package:pub/src/io.dart';
6 import 'package:scheduled_test/scheduled_test.dart'; 6 import 'package:scheduled_test/scheduled_test.dart';
7 import 'package:scheduled_test/scheduled_server.dart'; 7 import 'package:scheduled_test/scheduled_server.dart';
8 import 'package:shelf/shelf.dart' as shelf; 8 import 'package:shelf/shelf.dart' as shelf;
9 9
10 import '../descriptor.dart' as d; 10 import '../descriptor.dart' as d;
11 import '../test_pub.dart'; 11 import '../test_pub.dart';
12 import 'utils.dart'; 12 import 'utils.dart';
13 13
14 main() { 14 main() {
15 initConfig();
16 setUp(d.validPackage.create); 15 setUp(d.validPackage.create);
17 16
18 integration('cloud storage upload provides an error', () { 17 integration('cloud storage upload provides an error', () {
19 var server = new ScheduledServer(); 18 var server = new ScheduledServer();
20 d.credentialsFile(server, 'access token').create(); 19 d.credentialsFile(server, 'access token').create();
21 var pub = startPublish(server); 20 var pub = startPublish(server);
22 21
23 confirmPublish(pub); 22 confirmPublish(pub);
24 handleUploadForm(server); 23 handleUploadForm(server);
25 24
26 server.handle('POST', '/upload', (request) { 25 server.handle('POST', '/upload', (request) {
27 return drainStream(request.read()).then((_) { 26 return drainStream(request.read()).then((_) {
28 return new shelf.Response.notFound( 27 return new shelf.Response.notFound(
29 '<Error><Message>Your request sucked.</Message></Error>', 28 '<Error><Message>Your request sucked.</Message></Error>',
30 headers: {'content-type': 'application/xml'}); 29 headers: {'content-type': 'application/xml'});
31 }); 30 });
32 }); 31 });
33 32
34 // TODO(nweiz): This should use the server's error message once the client 33 // TODO(nweiz): This should use the server's error message once the client
35 // can parse the XML. 34 // can parse the XML.
36 pub.stderr.expect('Failed to upload the package.'); 35 pub.stderr.expect('Failed to upload the package.');
37 pub.shouldExit(1); 36 pub.shouldExit(1);
38 }); 37 });
39 } 38 }
OLDNEW

Powered by Google App Engine