Skip to content

Commit

Permalink
Add response status code test (#1009)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-james-dev authored Aug 26, 2023
1 parent 5ac7cfe commit cad7d60
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import 'src/request_headers_tests.dart';
import 'src/response_body_streamed_test.dart';
import 'src/response_body_tests.dart';
import 'src/response_headers_tests.dart';
import 'src/response_status_line_tests.dart';
import 'src/server_errors_test.dart';

export 'src/close_tests.dart' show testClose;
Expand All @@ -29,6 +30,7 @@ export 'src/request_headers_tests.dart' show testRequestHeaders;
export 'src/response_body_streamed_test.dart' show testResponseBodyStreamed;
export 'src/response_body_tests.dart' show testResponseBody;
export 'src/response_headers_tests.dart' show testResponseHeaders;
export 'src/response_status_line_tests.dart' show testResponseStatusLine;
export 'src/server_errors_test.dart' show testServerErrors;

/// Runs the entire test suite against the given [Client].
Expand Down Expand Up @@ -64,6 +66,7 @@ void testAll(Client Function() clientFactory,
canStreamResponseBody: canStreamResponseBody);
testRequestHeaders(clientFactory());
testResponseHeaders(clientFactory());
testResponseStatusLine(clientFactory());
testRedirect(clientFactory(), redirectAlwaysAllowed: redirectAlwaysAllowed);
testServerErrors(clientFactory());
testCompressedResponseBody(clientFactory());
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// Copyright (c) 2023, 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.

import 'dart:async';
import 'dart:io';

import 'package:async/async.dart';
import 'package:stream_channel/stream_channel.dart';

/// Starts an HTTP server that returns a custom status line.
///
/// Channel protocol:
/// On Startup:
/// - send port
/// On Request Received:
/// - load response status line from channel
/// - exit
void hybridMain(StreamChannel<Object?> channel) async {
late HttpServer server;
final clientQueue = StreamQueue(channel.stream);

server = (await HttpServer.bind('localhost', 0))
..listen((request) async {
await request.drain<void>();
final socket = await request.response.detachSocket(writeHeaders: false);

final statusLine = (await clientQueue.next) as String;
socket.writeAll(
[
statusLine,
'Content-Length: 0',
'\r\n', // Add \r\n at the end of this header section.
],
'\r\n', // Separate each field by \r\n.
);
await socket.close();
unawaited(server.close());
});

channel.sink.add(server.port);
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// Copyright (c) 2023, 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.

import 'package:async/async.dart';
import 'package:http/http.dart';
import 'package:stream_channel/stream_channel.dart';
import 'package:test/test.dart';

import 'response_status_line_server_vm.dart'
if (dart.library.html) 'response_status_line_server_web.dart';

/// Tests that the [Client] correctly processes the response status line.
void testResponseStatusLine(Client client) async {
group('response status line', () {
late String host;
late StreamChannel<Object?> httpServerChannel;
late StreamQueue<Object?> httpServerQueue;

setUp(() async {
httpServerChannel = await startServer();
httpServerQueue = StreamQueue(httpServerChannel.stream);
host = 'localhost:${await httpServerQueue.next}';
});

test(
'without status code',
() async {
httpServerChannel.sink.add('HTTP/1.1 OK');
await expectLater(
client.get(Uri.http(host, '')),
throwsA(isA<ClientException>()),
);
},
skip:
'Enable after https://github.com/dart-lang/http/issues/1013 is fixed',
);
});
}
1 change: 1 addition & 0 deletions pkgs/java_http/test/java_client_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ void main() {
testResponseBody(JavaClient());
testResponseBodyStreamed(JavaClient());
testResponseHeaders(JavaClient());
testResponseStatusLine(JavaClient());
testRequestBody(JavaClient());
testRequestHeaders(JavaClient());
testMultipleClients(JavaClient.new);
Expand Down

0 comments on commit cad7d60

Please sign in to comment.