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

Unified Diff: pkg/http/test/html/streamed_request_test.dart

Issue 261763002: Rip out the last dart:io dependency from pkg/http. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/http/test/html/client_test.dart ('k') | pkg/http/test/html/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http/test/html/streamed_request_test.dart
diff --git a/pkg/http/test/html/streamed_request_test.dart b/pkg/http/test/html/streamed_request_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e75d130e00fa4ce29220a09da57632e9a6a9f3bc
--- /dev/null
+++ b/pkg/http/test/html/streamed_request_test.dart
@@ -0,0 +1,40 @@
+// Copyright (c) 2014, 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 http.test.html.streamed_request_test;
+
+import 'dart:convert';
+
+import 'package:http/http.dart' as http;
+import 'package:http/browser_client.dart';
+import 'package:unittest/unittest.dart';
+
+import 'utils.dart';
+
+void main() {
+ group('contentLength', () {
+ test("works when it's set", () {
+ var request = new http.StreamedRequest('POST', echoUrl);
+ request.contentLength = 10;
+ request.sink.add([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
+ request.sink.close();
+
+ return new BrowserClient().send(request).then((response) {
+ expect(response.stream.toBytes(),
+ completion(equals([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])));
+ });
+ });
+
+ test("works when it's not set", () {
+ var request = new http.StreamedRequest('POST', echoUrl);
+ request.sink.add([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
+ request.sink.close();
+
+ return new BrowserClient().send(request).then((response) {
+ expect(response.stream.toBytes(),
+ completion(equals([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])));
+ });
+ });
+ });
+}
« no previous file with comments | « pkg/http/test/html/client_test.dart ('k') | pkg/http/test/html/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698