Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Unified Diff: tests/standalone/io/socket_info_test.dart

Issue 2518263002: Report a peer address over IPv4 as IPv4. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/io/socket_info_ipv6_test.dart ('k') | tests/standalone/standalone.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/socket_info_test.dart
diff --git a/tests/standalone/io/socket_info_test.dart b/tests/standalone/io/socket_info_test.dart
deleted file mode 100644
index eb14246bc618a35db6cad794d2fe5c205bc553be..0000000000000000000000000000000000000000
--- a/tests/standalone/io/socket_info_test.dart
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2013, 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.
-
-import "package:expect/expect.dart";
-import "dart:io";
-
-void testHostAndPort() {
- ServerSocket.bind("127.0.0.1", 0).then((server) {
-
- Socket.connect("127.0.0.1", server.port).then((clientSocket) {
- server.listen((socket) {
- Expect.equals(socket.port, server.port);
- Expect.equals(clientSocket.port, socket.remotePort);
- Expect.equals(clientSocket.remotePort, socket.port);
- Expect.equals(socket.remoteAddress.address, "127.0.0.1");
- Expect.equals(clientSocket.remoteAddress.address, "127.0.0.1");
- socket.destroy();
- clientSocket.destroy();
- server.close();
- });
- });
- });
-}
-
-void main() {
- testHostAndPort();
-}
« no previous file with comments | « tests/standalone/io/socket_info_ipv6_test.dart ('k') | tests/standalone/standalone.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698