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

Side by Side Diff: pkg/http/test/multipart_test.dart

Issue 12351006: Change MultipartFile.fromFile to MultipartFile.fromPath in pkg/http. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 months 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
« no previous file with comments | « pkg/http/pubspec.yaml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 multipart_test; 5 library multipart_test;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 import 'dart:utf'; 9 import 'dart:utf';
10 10
11 import 'package:pathos/path.dart' as path;
11 import 'package:unittest/unittest.dart'; 12 import 'package:unittest/unittest.dart';
12 import 'package:http/http.dart' as http; 13 import 'package:http/http.dart' as http;
13 import 'package:http/src/utils.dart'; 14 import 'package:http/src/utils.dart';
14 15
15 import 'utils.dart'; 16 import 'utils.dart';
16 17
17 /// A matcher that validates the body of a multipart request after finalization. 18 /// A matcher that validates the body of a multipart request after finalization.
18 /// The string "{{boundary}}" in [pattern] will be replaced by the boundary 19 /// The string "{{boundary}}" in [pattern] will be replaced by the boundary
19 /// string for the request, and LF newlines will be replaced with CRLF. 20 /// string for the request, and LF newlines will be replaced with CRLF.
20 /// Indentation will be normalized. 21 /// Indentation will be normalized.
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 196
196 expect(request, bodyMatches(''' 197 expect(request, bodyMatches('''
197 --{{boundary}} 198 --{{boundary}}
198 content-type: application/octet-stream 199 content-type: application/octet-stream
199 content-disposition: form-data; name="file" 200 content-disposition: form-data; name="file"
200 201
201 hello 202 hello
202 --{{boundary}}-- 203 --{{boundary}}--
203 ''')); 204 '''));
204 }); 205 });
206
207 test('with a file from disk', () {
208 var tempDir = new Directory('').createTempSync();
209
210 expect(new Future.of(() {
211 var filePath = path.join(tempDir.path, 'test-file');
212 new File(filePath).writeAsStringSync('hello');
213 return http.MultipartFile.fromPath('file', filePath);
214 }).then((file) {
215 var request = new http.MultipartRequest('POST', dummyUrl);
216 request.files.add(file);
217
218 expect(request, bodyMatches('''
219 --{{boundary}}
220 content-type: application/octet-stream
221 content-disposition: form-data; name="file"; filename="test-file"
222
223 hello
224 --{{boundary}}--
225 '''));
226 }).whenComplete(() => tempDir.delete(recursive: true)), completes);
227 });
205 } 228 }
OLDNEW
« no previous file with comments | « pkg/http/pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698