mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
3433d8cfc3
The tests are also now dartfmt. Bug: https://github.com/dart-lang/sdk/issues/40040 Change-Id: I8dece8097b37b70d47a5374dae2f3fadb0fc4b90 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134338 Commit-Queue: Jonas Termansen <sortie@google.com> Reviewed-by: Bob Nystrom <rnystrom@google.com>
54 lines
1.8 KiB
Dart
54 lines
1.8 KiB
Dart
// 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.
|
|
//
|
|
// VMOptions=
|
|
// VMOptions=--short_socket_read
|
|
// VMOptions=--short_socket_write
|
|
// VMOptions=--short_socket_read --short_socket_write
|
|
|
|
import 'dart:io';
|
|
import 'dart:typed_data';
|
|
|
|
import 'package:expect/expect.dart';
|
|
|
|
void testChunkedBufferSizeMsg() {
|
|
// Buffer of same size as our internal buffer, minus 4. Makes us hit the
|
|
// boundary.
|
|
var sendData = new Uint8List(8 * 1024 - 4);
|
|
for (int i = 0; i < sendData.length; i++) sendData[i] = i % 256;
|
|
|
|
HttpServer.bind('127.0.0.1', 0).then((server) {
|
|
server.listen((request) {
|
|
// Chunked is on by default. Be sure no data is lost when sending several
|
|
// chunks of data.
|
|
request.response.add(sendData);
|
|
request.response.add(sendData);
|
|
request.response.add(sendData);
|
|
request.response.add(sendData);
|
|
request.response.add(sendData);
|
|
request.response.add(sendData);
|
|
request.response.add(sendData);
|
|
request.response.add(sendData);
|
|
request.response.close();
|
|
});
|
|
var client = new HttpClient();
|
|
client.get('127.0.0.1', server.port, '/').then((request) {
|
|
request.headers.set(HttpHeaders.acceptEncodingHeader, "");
|
|
return request.close();
|
|
}).then((response) {
|
|
var buffer = [];
|
|
response.listen((data) => buffer.addAll(data), onDone: () {
|
|
Expect.equals(sendData.length * 8, buffer.length);
|
|
for (int i = 0; i < buffer.length; i++) {
|
|
Expect.equals(sendData[i % sendData.length], buffer[i]);
|
|
}
|
|
server.close();
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
void main() {
|
|
testChunkedBufferSizeMsg();
|
|
}
|