blob: 0e2f1cbb4a44deb74673f8bc72878bc353681230 [file] [log] [blame]
// Copyright (c) 2017, 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 int maxRedirects
/// read / write
/// Set this property to the maximum number of redirects to follow when
/// followRedirects is true. If this number is exceeded an error event will be
/// added with a RedirectException.
///
/// The default value is 5.
/// @description Checks that this property works only if followRedirects is true
/// @author sgrekhov@unipro.ru
import "dart:io";
import "dart:async";
import "dart:convert";
import "../../../Utils/expect.dart";
var localhost = InternetAddress.loopbackIPv4.address;
test(String method, int maxRedirects, int status) async {
asyncStart();
int counter = 0;
HttpServer server = await HttpServer.bind(localhost, 0);
server.listen((HttpRequest request) {
if (counter == 0) {
new Future.delayed(new Duration(seconds: 1), () {
server.close();
});
}
Expect.equals(0, counter);
maxRedirects = (maxRedirects == -1 ? 5 : maxRedirects);
int uri = int.parse(request.uri.path.substring(1));
Expect.equals(counter, uri);
counter++;
String redirectUri = "/${uri + 1}";
request.response.redirect(new Uri(path: redirectUri), status: status);
});
HttpClient client = new HttpClient();
client.open(method, localhost, server.port, "0")
.then((HttpClientRequest request) {
request.followRedirects = false;
if (maxRedirects > 0) {
request.maxRedirects = maxRedirects;
}
return request.close();
}).then((HttpClientResponse response) {
response.cast<List<int>>().transform(utf8.decoder).listen((content) {});
asyncEnd();
});
}
main() {
test("get", -1, HttpStatus.movedTemporarily);
test("get", -1, HttpStatus.found);
test("get", -1, HttpStatus.movedPermanently);
test("get", -1, HttpStatus.seeOther);
test("get", -1, HttpStatus.temporaryRedirect);
test("get", -1, HttpStatus.permanentRedirect);
test("head", -1, HttpStatus.movedTemporarily);
test("head", -1, HttpStatus.found);
test("head", -1, HttpStatus.movedPermanently);
test("head", -1, HttpStatus.seeOther);
test("head", -1, HttpStatus.temporaryRedirect);
test("head", -1, HttpStatus.permanentRedirect);
test("get", 3, HttpStatus.movedTemporarily);
test("get", 3, HttpStatus.found);
test("get", 3, HttpStatus.movedPermanently);
test("get", 3, HttpStatus.seeOther);
test("get", 3, HttpStatus.temporaryRedirect);
test("get", 3, HttpStatus.permanentRedirect);
test("head", 3, HttpStatus.movedTemporarily);
test("head", 3, HttpStatus.found);
test("head", 3, HttpStatus.movedPermanently);
test("head", 3, HttpStatus.seeOther);
test("head", 3, HttpStatus.temporaryRedirect);
test("head", 3, HttpStatus.permanentRedirect);
test("get", 6, HttpStatus.movedTemporarily);
test("get", 6, HttpStatus.found);
test("get", 6, HttpStatus.movedPermanently);
test("get", 6, HttpStatus.seeOther);
test("get", 6, HttpStatus.temporaryRedirect);
test("get", 6, HttpStatus.permanentRedirect);
test("head", 6, HttpStatus.movedTemporarily);
test("head", 6, HttpStatus.found);
test("head", 6, HttpStatus.movedPermanently);
test("head", 6, HttpStatus.seeOther);
test("head", 6, HttpStatus.temporaryRedirect);
test("head", 6, HttpStatus.permanentRedirect);
}