Skip to content

Commit f7bc7ed

Browse files
committed
test: rmi: Fix compatibility with GraalVM 17.0.9 behavior
While testing GraalVM 17.0.9, selftest failed with a different exception than expected (instead of a NoSuchObjectException, we get an IllegalArgumentException with a NoSuchMethodException cause). Handle this case gracefully to reduce false positive errors in selftest.
1 parent fd128e4 commit f7bc7ed

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

junixsocket-rmi/src/test/java/org/newsclub/net/unix/rmi/RemoteCloseableTest.java

+17-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package org.newsclub.net.unix.rmi;
1919

2020
import static org.junit.jupiter.api.Assertions.assertEquals;
21-
import static org.junit.jupiter.api.Assertions.assertThrows;
21+
import static org.junit.jupiter.api.Assertions.fail;
2222

2323
import java.io.IOException;
2424
import java.rmi.NoSuchObjectException;
@@ -60,14 +60,19 @@ public void testRemoteCloseableWithACloseableThing() throws IOException, NotBoun
6060
remoteCloseable.close();
6161
assertEquals(1, svc.remoteCloseableThingNumberOfCloseCalls(IsCloseable.class));
6262

63-
assertThrows(NoSuchObjectException.class, () -> {
64-
remoteCloseable.close();
65-
});
63+
remoteCloseable.close();
64+
fail("Should have thrown an exception");
6665
}
6766
} catch (NoSuchObjectException e) {
6867
// expected — since the object was forcibly closed above, it was unexported already.
6968
// ideally, RMI could gracefully handle calling #close() on an proxy that points to an
7069
// unexported object.
70+
} catch (IllegalArgumentException e) {
71+
if (e.getCause() instanceof NoSuchMethodException) {
72+
// observed with GraalVM 17.0.9; see java.rmi.server.RemoteObjectInvocationHandler
73+
} else {
74+
throw e;
75+
}
7176
}
7277
assertEquals(1, svc.remoteCloseableThingNumberOfCloseCalls(IsCloseable.class));
7378

@@ -99,13 +104,18 @@ public void testRemoteCloseableWithANotCloseableThing() throws IOException, NotB
99104
remoteCloseable.close();
100105
assertEquals(0, svc.remoteCloseableThingNumberOfCloseCalls(NotCloseable.class));
101106

102-
assertThrows(NoSuchObjectException.class, () -> {
103-
remoteCloseable.close();
104-
});
107+
remoteCloseable.close();
108+
fail("Should have thrown an exception");
105109
} catch (NoSuchObjectException e) {
106110
// expected — since the object was forcibly closed above, it was unexported already.
107111
// ideally, RMI could gracefully handle calling #close() on an proxy that points to an
108112
// unexported object.
113+
} catch (IllegalArgumentException e) {
114+
if (e.getCause() instanceof NoSuchMethodException) {
115+
// observed with GraalVM 17.0.9; see java.rmi.server.RemoteObjectInvocationHandler
116+
} else {
117+
throw e;
118+
}
109119
}
110120
assertEquals(0, svc.remoteCloseableThingNumberOfCloseCalls(NotCloseable.class));
111121

src/site/markdown/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ artifact (`<type>pom</type>`); see [Add junixsocket to your project](dependency.
1717
- Fix left-over temporary library files on Windows
1818
- Fix duplicate file descriptors being received sporadically for non-blocking sockets and upon error
1919
- Fix a flaky selftest when VSOCK is not supported
20+
- Fix a flaky selftest with GraalvM 17
2021
- Improve interoperability with exotic Linux/Java combinations
2122
- Add support for loongarch64 Linux
2223
- Add more tests

0 commit comments

Comments
 (0)