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

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

Issue 2665973003: Fix peer addresses being reported raw rather than the actual address byte. (Closed)
Patch Set: Add testcases Created 3 years, 11 months 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_ipv4_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/socket_info_ipv6_test.dart
diff --git a/tests/standalone/io/socket_info_ipv6_test.dart b/tests/standalone/io/socket_info_ipv6_test.dart
index d6969abf63a4db07bc8c395138101b86ad5ba5c2..016c5826511ceddba683319dc73c708149169bb8 100644
--- a/tests/standalone/io/socket_info_ipv6_test.dart
+++ b/tests/standalone/io/socket_info_ipv6_test.dart
@@ -7,18 +7,20 @@ import "dart:io";
void testHostAndPort() {
ServerSocket.bind("::1", 0).then((server) {
-
Socket.connect("::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, "::1");
- Expect.equals(socket.remoteAddress.type,
- InternetAddressType.IP_V6);
+ Expect.equals(socket.remoteAddress.type, InternetAddressType.IP_V6);
+ Expect.listEquals(socket.remoteAddress.rawAddress,
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
Expect.equals(clientSocket.remoteAddress.address, "::1");
- Expect.equals(clientSocket.remoteAddress.type,
- InternetAddressType.IP_V6);
+ Expect.equals(
+ clientSocket.remoteAddress.type, InternetAddressType.IP_V6);
+ Expect.listEquals(clientSocket.remoteAddress.rawAddress,
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
socket.destroy();
clientSocket.destroy();
server.close();
« no previous file with comments | « tests/standalone/io/socket_info_ipv4_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698