/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/* @test
* @summary Unit test for socket-channel adaptors
* @library ..
*/
public class AdaptSocket {
int timeout,
boolean shouldTimeout)
throws Exception
{
dayTimeServer.getPort());
//out.println("opts: " + sc.options());
so.setTcpNoDelay(true);
//so.setTrafficClass(SocketOpts.IP.TOS_THROUGHPUT);
so.setKeepAlive(true);
so.setOOBInline(true);
//out.println(" " + sc.options());
if (timeout == 0)
else {
try {
} catch (SocketTimeoutException x) {
if (shouldTimeout) {
return;
} else {
throw x;
}
}
}
byte[] bb = new byte[100];
so.shutdownInput();
so.shutdownOutput();
}
throws Exception
{
try {
byte[] b = new byte[100];
if (n != 5)
throw new Exception("Incorrect number of bytes read: " + n);
throw new Exception("Incorrect data read: " + n);
} catch (SocketTimeoutException x) {
if (shouldTimeout) {
return;
}
throw x;
}
}
int timeout,
boolean shouldTimeout)
throws Exception
{
echoServer.getPort());
if (timeout > 0)
for (int i = 0; i < 4; i++) {
}
}
}
// this test no longer really test the connection timeout
// since there is no way to prevent the server from eagerly
// accepting connection...
}
}
}
}
}