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

Unified Diff: pkg/http/test/multipart_test.dart

Issue 810223002: Remove the http package from the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: pkg/http/test/multipart_test.dart
diff --git a/pkg/http/test/multipart_test.dart b/pkg/http/test/multipart_test.dart
deleted file mode 100644
index e2494d5f0d97922c32bd4108b60dcc6f7ae183c5..0000000000000000000000000000000000000000
--- a/pkg/http/test/multipart_test.dart
+++ /dev/null
@@ -1,235 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library multipart_test;
-
-import 'dart:async';
-
-import 'package:http/http.dart' as http;
-import 'package:http_parser/http_parser.dart';
-import 'package:unittest/unittest.dart';
-
-import 'utils.dart';
-
-void main() {
- test('empty', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- expect(request, bodyMatches('''
- --{{boundary}}--
- '''));
- });
-
- test('with fields and files', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.fields['field1'] = 'value1';
- request.fields['field2'] = 'value2';
- request.files.add(new http.MultipartFile.fromString("file1", "contents1",
- filename: "filename1.txt"));
- request.files.add(new http.MultipartFile.fromString("file2", "contents2"));
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-disposition: form-data; name="field1"
-
- value1
- --{{boundary}}
- content-disposition: form-data; name="field2"
-
- value2
- --{{boundary}}
- content-type: text/plain; charset=utf-8
- content-disposition: form-data; name="file1"; filename="filename1.txt"
-
- contents1
- --{{boundary}}
- content-type: text/plain; charset=utf-8
- content-disposition: form-data; name="file2"
-
- contents2
- --{{boundary}}--
- '''));
- });
-
- test('with a unicode field name', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.fields['fïēld'] = 'value';
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-disposition: form-data; name="fïēld"
-
- value
- --{{boundary}}--
- '''));
- });
-
- test('with a field name with newlines', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.fields['foo\nbar\rbaz\r\nbang'] = 'value';
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-disposition: form-data; name="foo%0D%0Abar%0D%0Abaz%0D%0Abang"
-
- value
- --{{boundary}}--
- '''));
- });
-
- test('with a field name with a quote', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.fields['foo"bar'] = 'value';
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-disposition: form-data; name="foo%22bar"
-
- value
- --{{boundary}}--
- '''));
- });
-
- test('with a unicode field value', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.fields['field'] = 'vⱥlūe';
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-disposition: form-data; name="field"
- content-type: text/plain; charset=utf-8
-
- vⱥlūe
- --{{boundary}}--
- '''));
- });
-
- test('with a unicode filename', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.files.add(new http.MultipartFile.fromString('file', 'contents',
- filename: 'fïlēname.txt'));
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: text/plain; charset=utf-8
- content-disposition: form-data; name="file"; filename="fïlēname.txt"
-
- contents
- --{{boundary}}--
- '''));
- });
-
- test('with a filename with newlines', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.files.add(new http.MultipartFile.fromString('file', 'contents',
- filename: 'foo\nbar\rbaz\r\nbang'));
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: text/plain; charset=utf-8
- content-disposition: form-data; name="file"; filename="foo%0D%0Abar%0D%0Abaz%0D%0Abang"
-
- contents
- --{{boundary}}--
- '''));
- });
-
- test('with a filename with a quote', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- request.files.add(new http.MultipartFile.fromString('file', 'contents',
- filename: 'foo"bar'));
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: text/plain; charset=utf-8
- content-disposition: form-data; name="file"; filename="foo%22bar"
-
- contents
- --{{boundary}}--
- '''));
- });
-
- test('with a string file with a content-type but no charset', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- var file = new http.MultipartFile.fromString('file', '{"hello": "world"}',
- contentType: new MediaType('application', 'json'));
- request.files.add(file);
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: application/json; charset=utf-8
- content-disposition: form-data; name="file"
-
- {"hello": "world"}
- --{{boundary}}--
- '''));
- });
-
- test('with a file with a iso-8859-1 body', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- // "Ã¥" encoded as ISO-8859-1 and then read as UTF-8 results in "å".
- var file = new http.MultipartFile.fromString('file', 'non-ascii: "Ã¥"',
- contentType: new MediaType('text', 'plain', {'charset': 'iso-8859-1'}));
- request.files.add(file);
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: text/plain; charset=iso-8859-1
- content-disposition: form-data; name="file"
-
- non-ascii: "å"
- --{{boundary}}--
- '''));
- });
-
- test('with a stream file', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- var controller = new StreamController(sync: true);
- request.files.add(new http.MultipartFile('file', controller.stream, 5));
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: application/octet-stream
- content-disposition: form-data; name="file"
-
- hello
- --{{boundary}}--
- '''));
-
- controller.add([104, 101, 108, 108, 111]);
- controller.close();
- });
-
- test('with an empty stream file', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- var controller = new StreamController(sync: true);
- request.files.add(new http.MultipartFile('file', controller.stream, 0));
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: application/octet-stream
- content-disposition: form-data; name="file"
-
-
- --{{boundary}}--
- '''));
-
- controller.close();
- });
-
- test('with a byte file', () {
- var request = new http.MultipartRequest('POST', dummyUrl);
- var file = new http.MultipartFile.fromBytes(
- 'file', [104, 101, 108, 108, 111]);
- request.files.add(file);
-
- expect(request, bodyMatches('''
- --{{boundary}}
- content-type: application/octet-stream
- content-disposition: form-data; name="file"
-
- hello
- --{{boundary}}--
- '''));
- });
-}

Powered by Google App Engine
This is Rietveld 408576698