Skip to content

Commit 01415f3

Browse files
committedApr 29, 2021
8266250: WebSocketTest and WebSocketProxyTest call assertEquals(List<byte[]>, List<byte[]>)
Reviewed-by: prappo
1 parent 5f15666 commit 01415f3

File tree

2 files changed

+66
-4
lines changed

2 files changed

+66
-4
lines changed
 

‎test/jdk/java/net/httpclient/websocket/WebSocketProxyTest.java

+33-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,7 +49,9 @@
4949
import java.nio.ByteBuffer;
5050
import java.nio.charset.StandardCharsets;
5151
import java.util.ArrayList;
52+
import java.util.Arrays;
5253
import java.util.Base64;
54+
import java.util.HexFormat;
5355
import java.util.List;
5456
import java.util.concurrent.CompletableFuture;
5557
import java.util.concurrent.CompletionException;
@@ -148,6 +150,35 @@ public Object[][] servers() {
148150
};
149151
}
150152

153+
record bytes(byte[] bytes) {
154+
@Override
155+
public boolean equals(Object o) {
156+
if (this == o) return true;
157+
if (o instanceof bytes other) {
158+
return Arrays.equals(bytes(), other.bytes());
159+
}
160+
return false;
161+
}
162+
@Override
163+
public int hashCode() { return Arrays.hashCode(bytes()); }
164+
public String toString() {
165+
return "0x" + HexFormat.of()
166+
.withUpperCase()
167+
.formatHex(bytes());
168+
}
169+
}
170+
171+
static List<bytes> ofBytes(List<byte[]> bytes) {
172+
return bytes.stream().map(bytes::new).toList();
173+
}
174+
175+
static String diagnose(List<byte[]> a, List<byte[]> b) {
176+
var actual = ofBytes(a);
177+
var expected = ofBytes(b);
178+
var message = actual.equals(expected) ? "match" : "differ";
179+
return "%s and %s %s".formatted(actual, expected, message);
180+
}
181+
151182
@Test(dataProvider = "servers")
152183
public void simpleAggregatingBinaryMessages
153184
(Function<int[],DummySecureWebSocketServer> serverSupplier,
@@ -236,7 +267,7 @@ public void onError(WebSocket webSocket, Throwable error) {
236267
.join();
237268

238269
List<byte[]> a = actual.join();
239-
assertEquals(a, expected);
270+
assertEquals(ofBytes(a), ofBytes(expected), diagnose(a, expected));
240271
}
241272
}
242273

‎test/jdk/java/net/httpclient/websocket/WebSocketTest.java

+33-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -41,7 +41,9 @@
4141
import java.nio.ByteBuffer;
4242
import java.nio.charset.StandardCharsets;
4343
import java.util.ArrayList;
44+
import java.util.Arrays;
4445
import java.util.Base64;
46+
import java.util.HexFormat;
4547
import java.util.List;
4648
import java.util.concurrent.CompletableFuture;
4749
import java.util.concurrent.CompletionException;
@@ -432,6 +434,35 @@ public Object[][] servers() {
432434
};
433435
}
434436

437+
record bytes(byte[] bytes) {
438+
@Override
439+
public boolean equals(Object o) {
440+
if (this == o) return true;
441+
if (o instanceof bytes other) {
442+
return Arrays.equals(bytes(), other.bytes());
443+
}
444+
return false;
445+
}
446+
@Override
447+
public int hashCode() { return Arrays.hashCode(bytes()); }
448+
public String toString() {
449+
return "0x" + HexFormat.of()
450+
.withUpperCase()
451+
.formatHex(bytes());
452+
}
453+
}
454+
455+
static List<bytes> ofBytes(List<byte[]> bytes) {
456+
return bytes.stream().map(bytes::new).toList();
457+
}
458+
459+
static String diagnose(List<byte[]> a, List<byte[]> b) {
460+
var actual = ofBytes(a);
461+
var expected = ofBytes(b);
462+
var message = actual.equals(expected) ? "match" : "differ";
463+
return "%s and %s %s".formatted(actual, expected, message);
464+
}
465+
435466
@Test(dataProvider = "servers")
436467
public void simpleAggregatingBinaryMessages
437468
(Function<int[],DummyWebSocketServer> serverSupplier)
@@ -525,7 +556,7 @@ public void onError(WebSocket webSocket, Throwable error) {
525556
.join();
526557
try {
527558
List<byte[]> a = actual.join();
528-
assertEquals(a, expected);
559+
assertEquals(ofBytes(a), ofBytes(expected), diagnose(a, expected));
529560
} finally {
530561
webSocket.abort();
531562
}

0 commit comments

Comments
 (0)
Please sign in to comment.