blob: c04c4e2d9a81c7d1c787f6a53526dd4f5778666a [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.
// @dart = 2.9
/// @assertion InternetAddress address
/// Returns the address that the server is listening on. This can be used to get
/// the actual address used, when the address is fetched by a lookup from a
/// hostname.
/// @description Checks that this property returns the address that the server is
/// listening on. Test HttpServer.listenOn constructor
/// @author sgrekhov@unipro.ru
import "dart:io";
import "../../../Utils/expect.dart";
main() {
asyncStart();
HttpServer server = null;
ServerSocket socket = null;
ServerSocket.bind(InternetAddress.loopbackIPv4, 0).then((ServerSocket s) {
socket = s;
server = new HttpServer.listenOn(socket);
Expect.equals(InternetAddress.loopbackIPv4, server.address);
asyncEnd();
}).whenComplete(() {
if (server != null) {
server.close();
}
if (socket != null) {
socket.close();
}
});
}