blob: b31f0b7b2307b601bcd886793f1ce983b84c2cbc [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.
*/
/**
* @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 this method redirects this connection to a new URL
* @author sgrekhov@unipro.ru
*/
import "dart:io";
import "dart:convert";
import "../../../Utils/expect.dart";
var localhost = InternetAddress.loopbackIPv4.address;
test(String method) async {
asyncStart();
HttpServer server = await HttpServer.bind(localhost, 0);
server.listen((HttpRequest request) {
if (request.uri.path == "/xxx") {
request.response.write("xxx");
request.response.close();
} else if (request.uri.path == "/yyy") {
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) {
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");
}