OLD | NEW |
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 library pub_uploader_test; | 5 library pub_uploader_test; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 import 'dart:json' as json; | 8 import 'dart:json' as json; |
9 | 9 |
10 import '../../../pkg/scheduled_test/lib/scheduled_process.dart'; | 10 import 'package:scheduled_test/scheduled_process.dart'; |
11 import '../../../pkg/scheduled_test/lib/scheduled_server.dart'; | 11 import 'package:scheduled_test/scheduled_server.dart'; |
12 import '../../../pkg/scheduled_test/lib/scheduled_test.dart'; | 12 import 'package:scheduled_test/scheduled_test.dart'; |
13 | 13 |
14 import '../../pub/io.dart'; | 14 import '../../pub/io.dart'; |
15 import '../../pub/utils.dart'; | 15 import '../../pub/utils.dart'; |
16 import 'descriptor.dart' as d; | 16 import 'descriptor.dart' as d; |
17 import 'test_pub.dart'; | 17 import 'test_pub.dart'; |
18 | 18 |
19 final USAGE_STRING = ''' | 19 final USAGE_STRING = ''' |
20 Manage uploaders for a package on pub.dartlang.org. | 20 Manage uploaders for a package on pub.dartlang.org. |
21 | 21 |
22 Usage: pub uploader [options] {add/remove} <email> | 22 Usage: pub uploader [options] {add/remove} <email> |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 server.handle('DELETE', '/packages/pkg/uploaders/email.json', (request) { | 174 server.handle('DELETE', '/packages/pkg/uploaders/email.json', (request) { |
175 request.response.write("{not json"); | 175 request.response.write("{not json"); |
176 request.response.close(); | 176 request.response.close(); |
177 }); | 177 }); |
178 | 178 |
179 expect(pub.nextErrLine(), completion(equals('Invalid server response:'))); | 179 expect(pub.nextErrLine(), completion(equals('Invalid server response:'))); |
180 expect(pub.nextErrLine(), completion(equals('{not json'))); | 180 expect(pub.nextErrLine(), completion(equals('{not json'))); |
181 pub.shouldExit(1); | 181 pub.shouldExit(1); |
182 }); | 182 }); |
183 } | 183 } |
OLD | NEW |