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 lish.utils; | 5 library lish.utils; |
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 'package:scheduled_test/scheduled_test.dart'; | 10 import 'package:scheduled_test/scheduled_test.dart'; |
11 import 'package:scheduled_test/scheduled_server.dart'; | 11 import 'package:scheduled_test/scheduled_server.dart'; |
12 | 12 |
13 import '../../../pub/io.dart'; | 13 import '../../lib/src/io.dart'; |
14 import '../test_pub.dart'; | 14 import '../test_pub.dart'; |
15 | 15 |
16 void handleUploadForm(ScheduledServer server, [Map body]) { | 16 void handleUploadForm(ScheduledServer server, [Map body]) { |
17 server.handle('GET', '/packages/versions/new.json', (request) { | 17 server.handle('GET', '/packages/versions/new.json', (request) { |
18 return server.url.then((url) { | 18 return server.url.then((url) { |
19 expect(request.headers.value('authorization'), | 19 expect(request.headers.value('authorization'), |
20 equals('Bearer access token')); | 20 equals('Bearer access token')); |
21 | 21 |
22 if (body == null) { | 22 if (body == null) { |
23 body = { | 23 body = { |
(...skipping 21 matching lines...) Expand all Loading... |
45 return server.url; | 45 return server.url; |
46 }).then((url) { | 46 }).then((url) { |
47 request.response.statusCode = 302; | 47 request.response.statusCode = 302; |
48 request.response.headers.set( | 48 request.response.headers.set( |
49 'location', url.resolve('/create').toString()); | 49 'location', url.resolve('/create').toString()); |
50 request.response.close(); | 50 request.response.close(); |
51 }); | 51 }); |
52 }); | 52 }); |
53 } | 53 } |
54 | 54 |
OLD | NEW |