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:convert'; | 7 import 'dart:convert'; |
8 import 'dart:io'; | 8 import 'dart:io'; |
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 import 'package:shelf/shelf.dart' as shelf; |
12 | 13 |
13 import '../../lib/src/io.dart'; | 14 import '../../lib/src/io.dart'; |
14 | 15 |
15 void handleUploadForm(ScheduledServer server, [Map body]) { | 16 void handleUploadForm(ScheduledServer server, [Map body]) { |
16 server.handle('GET', '/api/packages/versions/new', (request) { | 17 server.handle('GET', '/api/packages/versions/new', (request) { |
17 return server.url.then((url) { | 18 return server.url.then((url) { |
18 expect(request.headers.value('authorization'), | 19 expect(request.headers, |
19 equals('Bearer access token')); | 20 containsPair('authorization', 'Bearer access token')); |
20 | 21 |
21 if (body == null) { | 22 if (body == null) { |
22 body = { | 23 body = { |
23 'url': url.resolve('/upload').toString(), | 24 'url': url.resolve('/upload').toString(), |
24 'fields': { | 25 'fields': { |
25 'field1': 'value1', | 26 'field1': 'value1', |
26 'field2': 'value2' | 27 'field2': 'value2' |
27 } | 28 } |
28 }; | 29 }; |
29 } | 30 } |
30 | 31 |
31 request.response.headers.contentType = | 32 return new shelf.Response.ok(JSON.encode(body), |
32 new ContentType("application", "json"); | 33 headers: {'content-type': 'application/json'}); |
33 request.response.write(JSON.encode(body)); | |
34 request.response.close(); | |
35 }); | 34 }); |
36 }); | 35 }); |
37 } | 36 } |
38 | 37 |
39 void handleUpload(ScheduledServer server) { | 38 void handleUpload(ScheduledServer server) { |
40 server.handle('POST', '/upload', (request) { | 39 server.handle('POST', '/upload', (request) { |
41 // TODO(nweiz): Once a multipart/form-data parser in Dart exists, validate | 40 // TODO(nweiz): Once a multipart/form-data parser in Dart exists, validate |
42 // that the request body is correctly formatted. See issue 6952. | 41 // that the request body is correctly formatted. See issue 6952. |
43 return drainStream(request).then((_) { | 42 return drainStream(request.read()) |
44 return server.url; | 43 .then((_) => server.url) |
45 }).then((url) { | 44 .then((url) => new shelf.Response.found(url.resolve('/create'))); |
46 request.response.statusCode = 302; | |
47 request.response.headers.set( | |
48 'location', url.resolve('/create').toString()); | |
49 request.response.close(); | |
50 }); | |
51 }); | 45 }); |
52 } | 46 } |
53 | 47 |
OLD | NEW |