| // 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 InternetAddress(String address) |
| /// Creates a new [InternetAddress] from a numeric address. |
| /// @description Checks that new [InternetAddress] object with given address and |
| /// [IPv6] type is created if [address] is some address in IPv6 notation with |
| /// some value groups omitted. |
| /// @author iarkh@unipro.ru |
| |
| |
| import "../../../Utils/expect.dart"; |
| import "dart:io"; |
| |
| main() { |
| InternetAddress address = new InternetAddress("::11:ab:4"); |
| Expect.equals("::11:ab:4", address.address); |
| Expect.equals(InternetAddressType.IPv6, address.type); |
| |
| address = new InternetAddress("11:ab:4::"); |
| Expect.equals("11:ab:4::", address.address); |
| Expect.equals(InternetAddressType.IPv6, address.type); |
| |
| address = new InternetAddress("11:ab:4::12:83"); |
| Expect.equals("11:ab:4::12:83", address.address); |
| Expect.equals(InternetAddressType.IPv6, address.type); |
| } |