blob: a71946f7dc20622e6d9875e58bc43e57a9f3b685 [file] [log] [blame]
// Copyright (c) 2018, 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.
// @dart = 2.9
/// @assertion Future<HttpClientResponse> redirect([
/// String method,
/// Uri url,
/// bool followLoops
/// ])
/// Redirects this connection to a new URL. The default value for method is the
/// method for the current request. The default value for url is the value of the
/// HttpHeaders.locationHeader header of the current response. All body data must have
/// been read from the current response before calling redirect.
///
/// All headers added to the request will be added to the redirection request.
/// However, any body sent with the request will not be part of the redirection
/// request.
///
/// If followLoops is set to true, redirect will follow the redirect, even if the
/// URL was already visited. The default value is false.
///
/// The method will ignore HttpClientRequest.maxRedirects and will always perform
/// the redirect.
/// @description Checks that any body sent with the request is not part of the
/// redirection request
/// @author sgrekhov@unipro.ru
import "dart:io";
import "dart:convert";
import "../../../Utils/expect.dart";
var localhost = InternetAddress.loopbackIPv4.address;
var lily = "Lily was here";
test(String method) async {
asyncStart();
HttpServer server = await HttpServer.bind(localhost, 0);
server.listen((HttpRequest request) {
if (request.uri.path == "/xxx") {
request.toList().then((List<List<int>> l) {
Expect.equals(lily + "\n", new String.fromCharCodes(l[0]));
request.response.write("xxx");
request.response.close();
});
} else if (request.uri.path == "/yyy") {
request.isEmpty.then((val) {
Expect.isTrue(val);
request.response.write("yyy");
request.response.close();
server.close();
});
} else {
server.close();
Expect.fail("Wrong URI:" + request.uri.path);
}
});
HttpClient client = new HttpClient();
client
.open(method, localhost, server.port, "/xxx")
.then((HttpClientRequest request) {
request.contentLength = lily.length + 1;
request.writeln(lily);
return request.close();
}).then((HttpClientResponse response) {
response.cast<List<int>>().transform(utf8.decoder).listen((content) {
Expect.equals("xxx", content);
});
response
.redirect("GET", new Uri(path: "yyy"))
.then((HttpClientResponse resp) {
resp.cast<List<int>>().transform(utf8.decoder).listen((content2) {
Expect.equals("yyy", content2);
asyncEnd();
});
});
});
}
main() {
test("get");
test("head");
test("delete");
test("put");
test("post");
test("patch");
}