question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Using Windows 10, the "server.bind()" command does not throw IOException with multiple test servers using the same file and port or no defined port.

See original GitHub issue

Describe the bug Using Windows 10, the “server.bind()” command does not return any error with multiple test servers using the same file and port or no defined port. The TestSampleServer runs and sits at the “accept()”, but only the last one run binds and owns the socket. Or even the pattern to run is “Server/Client (printout) — Server Server (printout) – Client” the last Server run gets the next Client connections. None of the “server” methods return any indication that the socket is “bound”.

To Reproduce Steps to reproduce the behavior:

  1. Modify demo/SimpleTestServer.java
  2. Add these collection of println() to test results
      server.bind(AFUNIXSocketAddress.of(socketFile));   // Or add port, of(socketFile, 35567);
      System.out.println("getInetAddress: " + server.getInetAddress());
      System.out.println("getChannel: " + server.getChannel());
      System.out.println("getLocalPort: " + server.getLocalPort());
      System.out.println("getLocalSocketAddress: " + server.getLocalSocketAddress());
      System.out.println("isBound: " + server.isBound());
      System.out.println("isLocalSocketAddressValid: " + server.isLocalSocketAddressValid());
  1. Run the SimpleTestServer several times concurrently.

Expected behavior Run a second TestSampleServer, the server.bind() should throw the IOException " if the bind operation fails, or if the socketis already bound."

Output/Screenshots If applicable, add console output/screenshots to help explain your problem.

  • One TestSampleServer/TestSampleClient
getInetAddress: localhost/127.0.0.1
getChannel: org.newsclub.net.unix.AFUNIXServerSocketChannel@24a35978
getLocalPort: 0
getLocalSocketAddress: org.newsclub.net.unix.AFUNIXSocketAddress[path=C:\Users\shellst\AppData\Local\Temp\junixsocket-test.sock]
isBound: true
isLocalSocketAddressValid: true
Waiting for connection...
Connected: org.newsclub.net.unix.AFUNIXSocket@31f924f5[local=org.newsclub.net.unix.AFUNIXSocketAddress[path=C:\Users\shellst\AppData\Local\Temp\junixsocket-test.sock];remote=null]
Saying hello to client org.newsclub.net.unix.AFSocketImpl$AFOutputStreamImpl@5579bb86
Client's response: Hello Server
Now counting to 5...
write 1
received 2
write 2
received 4
write 3
received 6
write 4
received 8
write 5
received 10
write 6
write -123 (end of numbers)
Waiting for connection...

Stop, run two TestSampleServer concurrently

  • Server One
getInetAddress: localhost/127.0.0.1
getChannel: org.newsclub.net.unix.AFUNIXServerSocketChannel@24a35978
getLocalPort: 0
getLocalSocketAddress: org.newsclub.net.unix.AFUNIXSocketAddress[path=C:\Users\shellst\AppData\Local\Temp\junixsocket-test.sock]
isBound: true
isLocalSocketAddressValid: true
Waiting for connection...
  • Server Two Concurrent
getInetAddress: localhost/127.0.0.1
getChannel: org.newsclub.net.unix.AFUNIXServerSocketChannel@24a35978
getLocalPort: 0
getLocalSocketAddress: org.newsclub.net.unix.AFUNIXSocketAddress[path=C:\Users\shellst\AppData\Local\Temp\junixsocket-test.sock]
isBound: true
isLocalSocketAddressValid: true
Waiting for connection...
  • Sample Test Client
Connected
Server says: Hello, dear Client
Replying to server...
Now reading numbers from the server...
1
Sending back 2
2
Sending back 4
3
Sending back 6
4
Sending back 8
5
Sending back 10
6
Sending back 12
End of communication.
  • Sample Server One (No Changes)
  • Sample Server Two (Gets the Client connection)
Connected: org.newsclub.net.unix.AFUNIXSocket@31f924f5[local=org.newsclub.net.unix.AFUNIXSocketAddress[path=C:\Users\shellst\AppData\Local\Temp\junixsocket-test.sock];remote=null]
Saying hello to client org.newsclub.net.unix.AFSocketImpl$AFOutputStreamImpl@5579bb86
Client's response: Hello Server
Now counting to 5...
write 1
received 2
write 2
received 4
write 3
received 6
write 4
received 8
write 5
received 10
write 6
write -123 (end of numbers)
Waiting for connection...

Environment (please complete the following information): Edition Windows 10 Pro Version 21H2 Installed on ‎4/‎15/‎2021 OS build 19044.2130 Experience Windows Feature Experience Pack 120.2212.4180.0

Processor AMD Ryzen Threadripper 2990WX 32-Core Processor 3.00 GHz Installed RAM 128 GB (128 GB usable) System type 64-bit operating system, x64-based processor

Please also add the output of java -jar junixsocket-selftest-x.y.z-SNAPSHOT-jar-with-dependencies.jar (x.y.z being the latest version, e.g., 2.3.3). — The selftest jar is available from the junixsocket-dist package in the Release section. This program determines whether junixsocket is supported on the current platform. The final line should say whether the selftest passed or failed.

If the selftest failed, please visit https://github.com/kohlschutter/junixsocket/issues and file a new bug report with the output below.

  • java -jar junixsocket-selftest-2.6.0-jar-with-dependencies.jar
junixsocket selftest version 2.6.0

System properties:

awt.toolkit: sun.awt.windows.WToolkit
file.encoding: Cp1252
file.encoding.pkg: sun.io
file.separator: \
java.awt.graphicsenv: sun.awt.Win32GraphicsEnvironment
java.awt.printerjob: sun.awt.windows.WPrinterJob
java.class.path: junixsocket-selftest-2.6.0-jar-with-dependencies.jar
java.class.version: 52.0
java.endorsed.dirs: C:\Program Files\Java\jdk1.8.0_191\jre\lib\endorsed
java.ext.dirs: C:\Program Files\Java\jdk1.8.0_191\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
java.home: C:\Program Files\Java\jdk1.8.0_191\jre
java.io.tmpdir: C:\Users\xxx\AppData\Local\Temp\
java.library.path: C:\Program Files\Java\jdk1.8.0_191\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Java\jdk1.8.0_191\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\PostgreSQL\pg10\bin;C:\Program Files\nodejs\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Liquid Technologies\Liquid Studio 2019\XmlDataBinder17\Redist17\cpp\win32\bin;C:\Program Files\Liquid Technologies\Liquid Studio 2019\XmlDataBinder17\Redist17\cpp\win64\bin;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files\SafeNet\Authentication\SAC\x64;C:\Program Files\SafeNet\Authentication\SAC\x32;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;.
java.runtime.name: Java(TM) SE Runtime Environment
java.runtime.version: 1.8.0_191-b12
java.specification.name: Java Platform API Specification
java.specification.vendor: Oracle Corporation
java.specification.version: 1.8
java.vendor: Oracle Corporation
java.vendor.url: http://java.oracle.com/
java.vendor.url.bug: http://bugreport.sun.com/bugreport/
java.version: 1.8.0_191
java.vm.info: mixed mode
java.vm.name: Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name: Java Virtual Machine Specification
java.vm.specification.vendor: Oracle Corporation
java.vm.specification.version: 1.8
java.vm.vendor: Oracle Corporation
java.vm.version: 25.191-b12
line.separator: \r\n
os.arch: amd64
os.name: Windows 10
os.version: 10.0
path.separator: ;
sun.arch.data.model: 64
sun.boot.class.path: C:\Program Files\Java\jdk1.8.0_191\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_191\jre\lib\rt.jar;C:\Program Files\Java\jdk1.8.0_191\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.8.0_191\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_191\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_191\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_191\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_191\jre\classes
sun.boot.library.path: C:\Program Files\Java\jdk1.8.0_191\jre\bin
sun.cpu.endian: little
sun.cpu.isalist: amd64
sun.desktop: windows
sun.io.unicode.encoding: UnicodeLittle
sun.java.command: junixsocket-selftest-2.6.0-jar-with-dependencies.jar
sun.java.launcher: SUN_STANDARD
sun.jnu.encoding: Cp1252
sun.management.compiler: HotSpot 64-Bit Tiered Compilers
sun.os.patch.level: 
sun.stderr.encoding: cp437
user.country: US
user.dir: C:\home\xxx\junixsocket_2.6.0
user.home: C:\Users\xxx
user.language: en
user.name: xxx
user.script: 
user.timezone: 
user.variant: 

AFSocket.isSupported: true

AFUNIXSocket.isSupported: true

Testing "junixsocket-common"... 
Testing "junixsocket-common"... AFTIPCSocketAddressTest.testParseFail()... 
Testing "junixsocket-common"... AFTIPCSocketAddressTest.testSchemesAvailable()... 
Testing "junixsocket-common"... AFTIPCSocketAddressTest.testGeneric()... 
Testing "junixsocket-common"... AFTIPCSocketAddressTest.testSocatString()... 
Testing "junixsocket-common"... AFTIPCSocketAddressTest.testSocketURI()... 
Testing "junixsocket-common"... AFTIPCSocketAddressTest.testServiceRangeURI()... 
Testing "junixsocket-common"... AFTIPCSocketAddressTest.testServiceURI()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testSchemesAvailable()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testSocatString()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testURITemplateWithPortNumber()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testURITemplate()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testHttpUnix()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testUnixScheme()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testFileScheme()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testAbstractNamespace()... 
Testing "junixsocket-common"... AFUNIXSocketAddressTest.testParseURIandBack()... 
Testing "junixsocket-common"... AcceptTimeoutTest.testCatchTimeout()... 
Testing "junixsocket-common"... AcceptTimeoutTest.testTimeoutAfterDelay()... 
Testing "junixsocket-common"... AcceptTimeoutTest.testAcceptWithoutBindToService()... 
Testing "junixsocket-common"... AvailableTest.testAvailableAtClient()... 
Testing "junixsocket-common"... AvailableTest.testAvailableAtServer()... 
Testing "junixsocket-common"... BufferOverflowTest.writeOverflow()... 
Testing "junixsocket-common"... BufferOverflowTest.readUpTo()... 
Testing "junixsocket-common"... BufferOverflowTest.readOutOfBounds()... 
Testing "junixsocket-common"... CancelAcceptTest.issue6test1()... 
Testing "junixsocket-common"... EndOfFileTest.clientWriteToSocketClosedByClient()... 
Testing "junixsocket-common"... EndOfFileTest.clientWriteToSocketClosedByServer()... 
Testing "junixsocket-common"... EndOfFileTest.bidirectionalSanity()... 
Testing "junixsocket-common"... EndOfFileTest.serverWriteToSocketClosedByClient()... 
Testing "junixsocket-common"... EndOfFileTest.serverWriteToSocketClosedByServer()... 
Testing "junixsocket-common"... EndOfFileTest.clientReadEof()... 
Testing "junixsocket-common"... EndOfFileTest.serverReadEof()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testInvalidFileDescriptor()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testPipe()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testAvailableTypes()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testStdout()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testRandomAccessFile()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testUnconnectedServerAsSocket()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testSocketPorts()... 
Testing "junixsocket-common"... FileDescriptorCastTest.testServer()... 
Testing "junixsocket-common"... InetAddressTest.testFromToBytes()... 
Testing "junixsocket-common"... InetAddressTest.testHostnameString()... 
Testing "junixsocket-common"... InetAddressTest.testIsLoopbackAddress()... 
Testing "junixsocket-common"... InetAddressTest.testHostnameStringEndsWithJunixSocket()... 
Testing "junixsocket-common"... PeerCredentialsTest.testSocketsSameProcess()... 
Supported credentials:   pid
Unsupported credentials: uid gid additional_gids uuid
Testing "junixsocket-common"... PipeTest.testPipe()... 
Testing "junixsocket-common"... PipeTest.testPipeRecvHang()... 
Testing "junixsocket-common"... ReadWriteTest.testReceiveWithByteArraySendByteForByte()... 
Testing "junixsocket-common"... ReadWriteTest.testReceiveWithByteArraySendWithByteArray()... 
Testing "junixsocket-common"... ReadWriteTest.testReceiveDataByteForByteSendByteForByte()... 
Testing "junixsocket-common"... ReadWriteTest.testReceiveDataByteForByteSendWithByteArray()... 
Testing "junixsocket-common"... SelectorTest.testNonBlockingAccept()... 
Testing "junixsocket-common"... SelectorTest.testClosedSelectorSelect()... 
Testing "junixsocket-common"... SelectorTest.testClosedSelectorWakeup()... 
Testing "junixsocket-common"... SelectorTest.testCancelSelect()... 
Testing "junixsocket-common"... SelectorTest.testConnectionCloseImmediateClientDisconnect()... 
Testing "junixsocket-common"... SelectorTest.testConnectionCloseImmediateClientDisconnectKeepLooping()... 
Testing "junixsocket-common"... SelectorTest.testConnectionCloseEventualClientDisconnectKeepLooping()... 
Testing "junixsocket-common"... SelectorTest.testConnectionCloseEventualClientDisconnect()... 
Testing "junixsocket-common"... ServerSocketCloseTest.testUnblockAcceptsWithSoTimeout()... 
Testing "junixsocket-common"... ServerSocketCloseTest.testUnblockAcceptsWithoutSoTimeout()... 
Testing "junixsocket-common"... ServerSocketTest.testUnboundServerSocket()... 
Testing "junixsocket-common"... ServerSocketTest.testBindBadArguments()... 
Testing "junixsocket-common"... ServerSocketTest.testCloseable()... 
Testing "junixsocket-common"... ServerSocketTest.testSupported()... 
Testing "junixsocket-common"... SocketAddressTest.testInetAddress()... 
Testing "junixsocket-common"... SocketAddressTest.testPath()... 
Testing "junixsocket-common"... SocketAddressTest.testPort()... 
Testing "junixsocket-common"... SocketAddressTest.testEmptyAddress()... 
Testing "junixsocket-common"... SocketAddressTest.testLegacyConstructor()... 
Testing "junixsocket-common"... SocketAddressTest.testByteConstructor()... 
Testing "junixsocket-common"... SocketAddressTest.testAbstractNamespace()... 
Testing "junixsocket-common"... SocketChannelTest.testNonBlockingConnect()... 
Testing "junixsocket-common"... SocketFactoryTest.testURISchemeCeateSocketWithInvalidHostname()... 
Testing "junixsocket-common"... SocketFactoryTest.testURISchemeCeateSocketWithIllegalArguments()... 
Testing "junixsocket-common"... SocketFactoryTest.testURISchemeCeateSocketThenConnect()... 
Testing "junixsocket-common"... SocketFactoryTest.testURISchemeCeateSocketWithHostnameValidCases()... 
Testing "junixsocket-common"... SocketFactoryTest.testSystemProperty()... 
Testing "junixsocket-common"... SocketFactoryTest.testFactoryArg()... 
Testing "junixsocket-common"... SocketPairTest.testSocketPair()... 
Testing "junixsocket-common"... SocketTest.testConnectBadArguments()... 
Testing "junixsocket-common"... SocketTest.testBindBadArguments()... 
Testing "junixsocket-common"... SocketTest.testCloseable()... 
Testing "junixsocket-common"... SocketTest.testUnconnectedSocket()... 
Testing "junixsocket-common"... SocketTest.testMain()... 
org.newsclub.net.unix.AFUNIXSocket.isSupported(): true
CAPABILITY_PEER_CREDENTIALS: true
CAPABILITY_ANCILLARY_MESSAGES: false
CAPABILITY_FILE_DESCRIPTORS: false
CAPABILITY_ABSTRACT_NAMESPACE: false
CAPABILITY_UNIX_DATAGRAMS: false
CAPABILITY_NATIVE_SOCKETPAIR: false
CAPABILITY_FD_AS_REDIRECT: false
CAPABILITY_TIPC: false
CAPABILITY_UNIX_DOMAIN: true
CAPABILITY_VSOCK: false
CAPABILITY_VSOCK_DGRAM: false
Testing "junixsocket-common"... SocketTest.testLoadedLibrary()... 
Testing "junixsocket-common"... SocketTest.testSupports()... 
Testing "junixsocket-common"... SocketTest.testVersion()... 
Testing "junixsocket-common"... SocketTest.testReceivedFileDescriptorsUnconnected()... 
Testing "junixsocket-common"... SocketTest.testSupported()... 
Testing "junixsocket-common"... SoTimeoutTest.issue14Fail()... 
Testing "junixsocket-common"... SoTimeoutTest.issue14Pass()... 
Testing "junixsocket-common"... SoTimeoutTest.testSocketTimeoutExceptionRead()... 
Testing "junixsocket-common"... SoTimeoutTest.testSocketTimeoutExceptionWrite()... 
Testing "junixsocket-common"... TcpNoDelayTest.testDefaultImpl()... 
Testing "junixsocket-common"... TcpNoDelayTest.testStrictImpl()... 
Testing "junixsocket-common"... ThroughputTest.testSocket()... 
Testing "junixsocket-common"... ThroughputTest.testSocketChannel()... 
Testing "junixsocket-common"... ThroughputTest.testSocketChannelDirectBuffer()... 
Testing "junixsocket-common"... done

.
'-- JUnit Jupiter [OK]
  +-- AFTIPCSocketAddressTest [OK]
  | +-- testParseFail() [OK]
  | +-- testSchemesAvailable() [OK]
  | +-- testGeneric() [OK]
  | +-- testSocatString() [OK]
  | +-- testSocketURI() [OK]
  | +-- testServiceRangeURI() [OK]
  | '-- testServiceURI() [OK]
  +-- AFUNIXSocketAddressTest [OK]
  | +-- testSchemesAvailable() [OK]
  | +-- testSocatString() [OK]
  | +-- testURITemplateWithPortNumber() [OK]
  | +-- testURITemplate() [OK]
  | +-- testHttpUnix() [OK]
  | +-- testUnixScheme() [OK]
  | +-- testFileScheme() [OK]
  | +-- testAbstractNamespace() [OK]
  | '-- testParseURIandBack() [OK]
  +-- AbstractNamespaceTest [S] Missing capabilities: [CAPABILITY_ABSTRACT_NAMESPACE]
  +-- AcceptTimeoutTest [OK]
  | +-- testCatchTimeout() [OK]
  | +-- testTimeoutAfterDelay() [OK]
  | '-- testAcceptWithoutBindToService() [OK]
  +-- AvailableTest [OK]
  | +-- testAvailableAtClient() [OK]
  | '-- testAvailableAtServer() [OK]
  +-- BufferOverflowTest [OK]
  | +-- writeOverflow() [OK]
  | +-- readUpTo() [OK]
  | '-- readOutOfBounds() [OK]
  +-- CancelAcceptTest [OK]
  | '-- issue6test1() [OK]
  +-- DatagramSocketTest [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
  +-- EndOfFileTest [OK]
  | +-- clientWriteToSocketClosedByClient() [OK]
  | +-- clientWriteToSocketClosedByServer() [OK]
  | +-- bidirectionalSanity() [OK]
  | +-- serverWriteToSocketClosedByClient() [OK]
  | +-- serverWriteToSocketClosedByServer() [OK]
  | +-- clientReadEof() [OK]
  | '-- serverReadEof() [OK]
  +-- FileDescriptorCastTest [OK]
  | +-- testInvalidFileDescriptor() [OK]
  | +-- testPipe() [OK]
  | +-- testAvailableTypes() [OK]
  | +-- testStdout() [OK]
  | '-- testRandomAccessFile() [OK]
  +-- FileDescriptorCastTest [OK]
  | +-- testUnconnectedServerAsSocket() [OK]
  | +-- testSocketPairNative() [S] Missing capabilities: [CAPABILITY_NATIVE_SOCKETPAIR]
  | +-- testDatagramFileChannel() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
  | +-- testSocketPair() [S] Missing capabilities: [CAPABILITY_NATIVE_SOCKETPAIR]
  | +-- testDatagramSocket() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
  | +-- testSocketPorts() [OK]
  | +-- testDatagramPorts() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
  | +-- testForkedVMRedirectStdin() [S] Missing capabilities: [CAPABILITY_FD_AS_REDIRECT]
  | '-- testServer() [OK]
  +-- FileDescriptorsTest [S] Missing capabilities: [CAPABILITY_FILE_DESCRIPTORS]
  +-- InetAddressTest [OK]
  | +-- testFromToBytes() [OK]
  | +-- testHostnameString() [OK]
  | +-- testIsLoopbackAddress() [OK]
  | '-- testHostnameStringEndsWithJunixSocket() [OK]
  +-- PeerCredentialsTest [OK]
  | +-- testSocketsSameProcess() [OK]
  | '-- testDatagramSocket() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
  +-- PipeTest [OK]
  | +-- testPipe() [OK]
  | '-- testPipeRecvHang() [OK]
  +-- ReadWriteTest [OK]
  | +-- testReceiveWithByteArraySendByteForByte() [OK]
  | +-- testReceiveWithByteArraySendWithByteArray() [OK]
  | +-- testReceiveDataByteForByteSendByteForByte() [OK]
  | '-- testReceiveDataByteForByteSendWithByteArray() [OK]
  +-- SelectorTest [OK]
  | +-- testNonBlockingAccept() [OK]
  | +-- testClosedSelectorSelect() [OK]
  | +-- testClosedSelectorWakeup() [OK]
  | +-- testCancelSelect() [OK]
  | +-- testConnectionCloseImmediateClientDisconnect() [OK]
  | +-- testConnectionCloseImmediateClientDisconnectKeepLooping() [OK]
  | +-- testConnectionCloseEventualClientDisconnectKeepLooping() [OK]
  | '-- testConnectionCloseEventualClientDisconnect() [OK]
  +-- ServerSocketCloseTest [OK]
  | +-- testUnblockAcceptsWithSoTimeout() [OK]
  | '-- testUnblockAcceptsWithoutSoTimeout() [OK]
  +-- ServerSocketTest [OK]
  | +-- testUnboundServerSocket() [OK]
  | +-- testBindBadArguments() [OK]
  | +-- testCloseable() [OK]
  | '-- testSupported() [OK]
  +-- SocketAddressTest [OK]
  | +-- testInetAddress() [OK]
  | +-- testPath() [OK]
  | +-- testPort() [OK]
  | +-- testEmptyAddress() [OK]
  | +-- testLegacyConstructor() [OK]
  | +-- testByteConstructor() [OK]
  | '-- testAbstractNamespace() [OK]
  +-- SocketChannelTest [OK]
  | '-- testNonBlockingConnect() [OK]
  +-- SocketFactoryTest [OK]
  | +-- testURISchemeCeateSocketWithInvalidHostname() [OK]
  | +-- testURISchemeCeateSocketWithIllegalArguments() [OK]
  | +-- testURISchemeCeateSocketThenConnect() [OK]
  | +-- testURISchemeCeateSocketWithHostnameValidCases() [OK]
  | +-- testSystemProperty() [OK]
  | '-- testFactoryArg() [OK]
  +-- SocketPairTest [OK]
  | +-- testDatagramPair() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
  | '-- testSocketPair() [OK]
  +-- SocketTest [OK]
  | +-- testConnectBadArguments() [OK]
  | +-- testBindBadArguments() [OK]
  | +-- testCloseable() [OK]
  | +-- testUnconnectedSocket() [OK]
  | +-- testMain() [OK]
  | +-- testLoadedLibrary() [OK]
  | +-- testSupports() [OK]
  | +-- testVersion() [OK]
  | +-- testReceivedFileDescriptorsUnconnected() [OK]
  | '-- testSupported() [OK]
  +-- SoTimeoutTest [OK]
  | +-- issue14Fail() [OK]
  | +-- issue14Pass() [OK]
  | +-- testSocketTimeoutExceptionRead() [OK]
  | '-- testSocketTimeoutExceptionWrite() [OK]
  +-- StandardSocketOptionsTest [OK]
  | +-- testUnconnectedServerSocketOptions() [S] This test requires Java 9 or later
  | '-- testSocketOptions() [S] This test requires Java 9 or later
  +-- TcpNoDelayTest [OK]
  | +-- testDefaultImpl() [OK]
  | '-- testStrictImpl() [OK]
  '-- ThroughputTest [OK]
    +-- testDatagramChannel() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
    +-- testDatagramChannelDirect() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
    +-- testDatagramChannelNonBlocking() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
    +-- testDatagramChannelNonBlockingDirect() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
    +-- testDatagramPacket() [S] Missing capabilities: [CAPABILITY_UNIX_DATAGRAMS]
    +-- testSocket() [OK]
    +-- testSocketChannel() [OK]
    '-- testSocketChannelDirectBuffer() [OK]

Test run finished after 5808 ms
[        29 containers found      ]
[         3 containers skipped    ]
[        26 containers started    ]
[         0 containers aborted    ]
[        26 containers successful ]
[         0 containers failed     ]
[       129 tests found           ]
[        30 tests skipped         ]
[        99 tests started         ]
[         0 tests aborted         ]
[        99 tests successful      ]
[         0 tests failed          ]

Testing "junixsocket-tipc"... 
Testing "junixsocket-tipc"... done

.
'-- JUnit Jupiter [OK]
  +-- AcceptTimeoutTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- AFTIPCTopologyWatcherTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- AncillaryMessageTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- AvailableTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- BufferOverflowTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- CancelAcceptTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- DatagramSocketTest [S] Missing capabilities: [CAPABILITY_TIPC, CAPABILITY_UNIX_DATAGRAMS]
  +-- EndOfFileTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- ReadWriteTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- SelectorTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- ServerSocketCloseTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- ServerSocketTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- SocketChannelTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- SocketOptionsTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- SocketPairTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- SocketTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- SoTimeoutTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- StandardSocketOptionsTest [S] Missing capabilities: [CAPABILITY_TIPC]
  +-- TcpNoDelayTest [S] Missing capabilities: [CAPABILITY_TIPC]
  '-- ThroughputTest [S] Missing capabilities: [CAPABILITY_TIPC]

Test run finished after 22 ms
[        21 containers found      ]
[        20 containers skipped    ]
[         1 containers started    ]
[         0 containers aborted    ]
[         1 containers successful ]
[         0 containers failed     ]
[        78 tests found           ]
[        78 tests skipped         ]
[         0 tests started         ]
[         0 tests aborted         ]
[         0 tests successful      ]
[         0 tests failed          ]

Testing "junixsocket-vsock"... 
Testing "junixsocket-vsock"... AFVSOCKExtensionsTest.testGetLocalID()... 
Testing "junixsocket-vsock"... done

.
'-- JUnit Jupiter [OK]
  +-- AFVSOCKExtensionsTest [OK]
  | '-- testGetLocalID() [OK]
  +-- AcceptTimeoutTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- AvailableTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- BufferOverflowTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- CancelAcceptTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- DatagramSocketTest [S] Missing capabilities: [CAPABILITY_VSOCK, CAPABILITY_VSOCK_DGRAM]
  +-- EndOfFileTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- ReadWriteTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- SelectorTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- ServerSocketCloseTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- ServerSocketTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- SocketChannelTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- SocketOptionsTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- SocketPairTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- SocketTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- SoTimeoutTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- StandardSocketOptionsTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  +-- TcpNoDelayTest [S] Missing capabilities: [CAPABILITY_VSOCK]
  '-- ThroughputTest [S] Missing capabilities: [CAPABILITY_VSOCK]

Test run finished after 19 ms
[        20 containers found      ]
[        18 containers skipped    ]
[         2 containers started    ]
[         0 containers aborted    ]
[         2 containers successful ]
[         0 containers failed     ]
[        74 tests found           ]
[        73 tests skipped         ]
[         1 tests started         ]
[         0 tests aborted         ]
[         1 tests successful      ]
[         0 tests failed          ]

Testing "junixsocket-rmi"... 
Testing "junixsocket-rmi"... RegistryTest.testDoubleCreateRegistry()... 
Testing "junixsocket-rmi"... RegistryTest.testExportAndBind()... 
Testing "junixsocket-rmi"... RemoteCloseableTest.testRemoteCloseableWithANotCloseableThing()... 
Testing "junixsocket-rmi"... RemoteCloseableTest.testRemoteCloseableWithACloseableThing()... 
Testing "junixsocket-rmi"... RMIPeerCredentialsTest.testRemotePeerCredentials()... 
Testing "junixsocket-rmi"... JunixsocketVersionTest.testVersion()... 
Testing "junixsocket-rmi"... done

.
'-- JUnit Jupiter [OK]
  +-- RegistryTest [OK]
  | +-- testDoubleCreateRegistry() [OK]
  | '-- testExportAndBind() [OK]
  +-- RemoteCloseableTest [OK]
  | +-- testRemoteCloseableWithANotCloseableThing() [OK]
  | '-- testRemoteCloseableWithACloseableThing() [OK]
  +-- RemoteFileDescriptorTest [S] Missing capabilities: [CAPABILITY_FILE_DESCRIPTORS]
  +-- RMIPeerCredentialsTest [OK]
  | '-- testRemotePeerCredentials() [OK]
  '-- JunixsocketVersionTest [OK]
    '-- testVersion() [OK]

Test run finished after 363 ms
[         6 containers found      ]
[         1 containers skipped    ]
[         5 containers started    ]
[         0 containers aborted    ]
[         5 containers successful ]
[         0 containers failed     ]
[        12 tests found           ]
[         6 tests skipped         ]
[         6 tests started         ]
[         0 tests aborted         ]
[         6 tests successful      ]
[         0 tests failed          ]

Skipping optional module: junixsocket-common.JavaInet; enable by launching with -Dselftest.enable-module.junixsocket-common.JavaInet=true

Selftest results:
PASS	junixsocket-common	99/129 (30 skipped)
PASS	junixsocket-tipc	0/78 (78 skipped)
PASS	junixsocket-vsock	1/74 (73 skipped)
PASS	junixsocket-rmi	6/12 (6 skipped)

Supported capabilities:   [CAPABILITY_PEER_CREDENTIALS, CAPABILITY_UNIX_DOMAIN]
Unsupported capabilities: [CAPABILITY_ANCILLARY_MESSAGES, CAPABILITY_FILE_DESCRIPTORS, CAPABILITY_ABSTRACT_NAMESPACE, CAPABILITY_UNIX_DATAGRAMS, CAPABILITY_NATIVE_SOCKETPAIR, CAPABILITY_FD_AS_REDIRECT, CAPABILITY_TIPC, CAPABILITY_VSOCK, CAPABILITY_VSOCK_DGRAM]

Selftest PASSED


Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
SteveShellcommented, Oct 25, 2022

Thanks! Earlier this weekend I had been writing a long reply, but I’m pleased you closed it out, and I will get the 2.6.1 and use that version. I appreciate your great vision on junixsocket. Hopefully for you it was an enjoyable jaunt down the WIN32 lane. Cheers, Steve Shell

On Tue, Oct 25, 2022 at 10:39 AM Dr. Christian Kohlschütter < @.***> wrote:

Closed #121 https://github.com/kohlschutter/junixsocket/issues/121 as completed.

— Reply to this email directly, view it on GitHub https://github.com/kohlschutter/junixsocket/issues/121#event-7664851126, or unsubscribe https://github.com/notifications/unsubscribe-auth/AHHSUMPY3N4XFX2HBPOVORLWE75LRANCNFSM6AAAAAARIL4B5Q . You are receiving this because you were assigned.Message ID: @.***>

0reactions
kohlschuettercommented, Oct 25, 2022

Assuming this is fixed. 2.6.1 will be released tomorrow. Please verify with the above snapshot build, and reopen this bug if necessary. Thanks again for reporting!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Troubleshoot Azure Files problems in Windows (SMB)
Solution 1 — Use Azure File Sync as a QUIC endpoint. You can use Azure File Sync as a workaround to access Azure...
Read more >
Java Socket Programming - Socket Server, Client example
A socket is one endpoint of a two-way communication link between two programs running on the network. The socket is bound to a...
Read more >
Red Hat JBoss Enterprise Application Platform 7.4
After required services start, the server transitions into a normal running state and can start accepting requests. This startup script uses the EAP_HOME/bin/ ......
Read more >
java.net.ConnectException: Connection refused - Stack Overflow
This exception means that there is no service listening on the IP/port you are trying to connect to: You are trying to connect...
Read more >
Sockets and Client/Server Communication
Most clients and servers communicate by sending streams of ... A port is a unique communication endpoint on a host, ... Using Ports...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found