Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
3e0d71df
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3e0d71df
编写于
10月 15, 2012
作者:
R
robm
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8000487: Java JNDI connection library on ldap conn is not honoring configured timeout
Reviewed-by: vinnie
上级
51c31e33
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
306 addition
and
352 deletion
+306
-352
src/share/classes/com/sun/jndi/ldap/Connection.java
src/share/classes/com/sun/jndi/ldap/Connection.java
+3
-1
src/share/classes/com/sun/jndi/ldap/LdapClient.java
src/share/classes/com/sun/jndi/ldap/LdapClient.java
+126
-120
test/com/sun/jndi/ldap/LdapTimeoutTest.java
test/com/sun/jndi/ldap/LdapTimeoutTest.java
+177
-0
test/com/sun/jndi/ldap/LdapsReadTimeoutTest.java
test/com/sun/jndi/ldap/LdapsReadTimeoutTest.java
+0
-118
test/com/sun/jndi/ldap/ReadTimeoutTest.java
test/com/sun/jndi/ldap/ReadTimeoutTest.java
+0
-113
未找到文件。
src/share/classes/com/sun/jndi/ldap/Connection.java
浏览文件 @
3e0d71df
...
...
@@ -157,7 +157,8 @@ public final class Connection implements Runnable {
volatile
IOException
closureReason
=
null
;
volatile
boolean
useable
=
true
;
// is Connection still useable
private
int
readTimeout
;
int
readTimeout
;
int
connectTimeout
;
// true means v3; false means v2
// Called in LdapClient.authenticate() (which is synchronized)
...
...
@@ -187,6 +188,7 @@ public final class Connection implements Runnable {
this
.
port
=
port
;
this
.
parent
=
parent
;
this
.
readTimeout
=
readTimeout
;
this
.
connectTimeout
=
connectTimeout
;
if
(
trace
!=
null
)
{
traceFile
=
trace
;
...
...
src/share/classes/com/sun/jndi/ldap/LdapClient.java
浏览文件 @
3e0d71df
...
...
@@ -150,149 +150,155 @@ public final class LdapClient implements PooledConnection {
String
authMechanism
,
Control
[]
ctls
,
Hashtable
<?,?>
env
)
throws
NamingException
{
authenticateCalled
=
true
;
int
readTimeout
=
conn
.
readTimeout
;
conn
.
readTimeout
=
conn
.
connectTimeout
;
LdapResult
res
=
null
;
try
{
ensureOpen
();
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
();
ne
.
setRootCause
(
e
);
throw
ne
;
}
authenticateCalled
=
true
;
switch
(
version
)
{
case
LDAP_VERSION3_VERSION2:
case
LDAP_VERSION3:
isLdapv3
=
true
;
break
;
case
LDAP_VERSION2:
isLdapv3
=
false
;
break
;
default
:
throw
new
CommunicationException
(
"Protocol version "
+
version
+
" not supported"
);
}
LdapResult
res
=
null
;
try
{
ensureOpen
();
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
();
ne
.
setRootCause
(
e
);
throw
ne
;
}
if
(
authMechanism
.
equalsIgnoreCase
(
"none"
)
||
authMechanism
.
equalsIgnoreCase
(
"anonymous"
))
{
switch
(
version
)
{
case
LDAP_VERSION3_VERSION2:
case
LDAP_VERSION3:
isLdapv3
=
true
;
break
;
case
LDAP_VERSION2:
isLdapv3
=
false
;
break
;
default
:
throw
new
CommunicationException
(
"Protocol version "
+
version
+
" not supported"
);
}
// Perform LDAP bind if we are reauthenticating, using LDAPv2,
// supporting failover to LDAPv2, or controls have been supplied.
if
(!
initial
||
(
version
==
LDAP_VERSION2
)
||
(
version
==
LDAP_VERSION3_VERSION2
)
||
((
ctls
!=
null
)
&&
(
ctls
.
length
>
0
)))
{
if
(
authMechanism
.
equalsIgnoreCase
(
"none"
)
||
authMechanism
.
equalsIgnoreCase
(
"anonymous"
))
{
// Perform LDAP bind if we are reauthenticating, using LDAPv2,
// supporting failover to LDAPv2, or controls have been supplied.
if
(!
initial
||
(
version
==
LDAP_VERSION2
)
||
(
version
==
LDAP_VERSION3_VERSION2
)
||
((
ctls
!=
null
)
&&
(
ctls
.
length
>
0
)))
{
try
{
// anonymous bind; update name/pw for LDAPv2 retry
res
=
ldapBind
(
name
=
null
,
(
byte
[])(
pw
=
null
),
ctls
,
null
,
false
);
if
(
res
.
status
==
LdapClient
.
LDAP_SUCCESS
)
{
conn
.
setBound
();
}
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
(
"anonymous bind failed: "
+
conn
.
host
+
":"
+
conn
.
port
);
ne
.
setRootCause
(
e
);
throw
ne
;
}
}
else
{
// Skip LDAP bind for LDAPv3 anonymous bind
res
=
new
LdapResult
();
res
.
status
=
LdapClient
.
LDAP_SUCCESS
;
}
}
else
if
(
authMechanism
.
equalsIgnoreCase
(
"simple"
))
{
// simple authentication
byte
[]
encodedPw
=
null
;
try
{
// anonymous bind; update name/pw for LDAPv2 retry
res
=
ldapBind
(
name
=
null
,
(
byte
[])(
pw
=
null
),
ctls
,
null
,
false
);
encodedPw
=
encodePassword
(
pw
,
isLdapv3
);
res
=
ldapBind
(
name
,
encodedPw
,
ctls
,
null
,
false
);
if
(
res
.
status
==
LdapClient
.
LDAP_SUCCESS
)
{
conn
.
setBound
();
}
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
(
"
anonymous
bind failed: "
+
conn
.
host
+
":"
+
conn
.
port
);
new
CommunicationException
(
"
simple
bind failed: "
+
conn
.
host
+
":"
+
conn
.
port
);
ne
.
setRootCause
(
e
);
throw
ne
;
}
}
else
{
// Skip LDAP bind for LDAPv3 anonymous bind
res
=
new
LdapResult
();
res
.
status
=
LdapClient
.
LDAP_SUCCESS
;
}
}
else
if
(
authMechanism
.
equalsIgnoreCase
(
"simple"
))
{
// simple authentication
byte
[]
encodedPw
=
null
;
try
{
encodedPw
=
encodePassword
(
pw
,
isLdapv3
);
res
=
ldapBind
(
name
,
encodedPw
,
ctls
,
null
,
false
);
if
(
res
.
status
==
LdapClient
.
LDAP_SUCCESS
)
{
conn
.
setBound
();
}
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
(
"simple bind failed: "
+
conn
.
host
+
":"
+
conn
.
port
);
ne
.
setRootCause
(
e
);
throw
ne
;
}
finally
{
// If pw was copied to a new array, clear that array as
// a security precaution.
if
(
encodedPw
!=
pw
&&
encodedPw
!=
null
)
{
for
(
int
i
=
0
;
i
<
encodedPw
.
length
;
i
++)
{
encodedPw
[
i
]
=
0
;
}
finally
{
// If pw was copied to a new array, clear that array as
// a security precaution.
if
(
encodedPw
!=
pw
&&
encodedPw
!=
null
)
{
for
(
int
i
=
0
;
i
<
encodedPw
.
length
;
i
++)
{
encodedPw
[
i
]
=
0
;
}
}
}
}
}
else
if
(
isLdapv3
)
{
// SASL authentication
try
{
res
=
LdapSasl
.
saslBind
(
this
,
conn
,
conn
.
host
,
name
,
pw
,
authMechanism
,
env
,
ctls
);
if
(
res
.
status
==
LdapClient
.
LDAP_SUCCESS
)
{
conn
.
setBound
();
}
else
if
(
isLdapv3
)
{
// SASL authentication
try
{
res
=
LdapSasl
.
saslBind
(
this
,
conn
,
conn
.
host
,
name
,
pw
,
authMechanism
,
env
,
ctls
);
if
(
res
.
status
==
LdapClient
.
LDAP_SUCCESS
)
{
conn
.
setBound
();
}
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
(
"SASL bind failed: "
+
conn
.
host
+
":"
+
conn
.
port
);
ne
.
setRootCause
(
e
);
throw
ne
;
}
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
(
"SASL bind failed: "
+
conn
.
host
+
":"
+
conn
.
port
);
ne
.
setRootCause
(
e
);
throw
ne
;
}
else
{
throw
new
AuthenticationNotSupportedException
(
authMechanism
);
}
}
else
{
throw
new
AuthenticationNotSupportedException
(
authMechanism
);
}
//
// re-try login using v2 if failing over
//
if
(
initial
&&
(
res
.
status
==
LdapClient
.
LDAP_PROTOCOL_ERROR
)
&&
(
version
==
LdapClient
.
LDAP_VERSION3_VERSION2
)
&&
(
authMechanism
.
equalsIgnoreCase
(
"none"
)
||
authMechanism
.
equalsIgnoreCase
(
"anonymous"
)
||
authMechanism
.
equalsIgnoreCase
(
"simple"
)))
{
byte
[]
encodedPw
=
null
;
try
{
isLdapv3
=
false
;
encodedPw
=
encodePassword
(
pw
,
false
);
res
=
ldapBind
(
name
,
encodedPw
,
ctls
,
null
,
false
);
if
(
res
.
status
==
LdapClient
.
LDAP_SUCCESS
)
{
conn
.
setBound
();
}
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
(
authMechanism
+
":"
+
conn
.
host
+
":"
+
conn
.
port
);
ne
.
setRootCause
(
e
);
throw
ne
;
}
finally
{
// If pw was copied to a new array, clear that array as
// a security precaution.
if
(
encodedPw
!=
pw
&&
encodedPw
!=
null
)
{
for
(
int
i
=
0
;
i
<
encodedPw
.
length
;
i
++)
{
encodedPw
[
i
]
=
0
;
//
// re-try login using v2 if failing over
//
if
(
initial
&&
(
res
.
status
==
LdapClient
.
LDAP_PROTOCOL_ERROR
)
&&
(
version
==
LdapClient
.
LDAP_VERSION3_VERSION2
)
&&
(
authMechanism
.
equalsIgnoreCase
(
"none"
)
||
authMechanism
.
equalsIgnoreCase
(
"anonymous"
)
||
authMechanism
.
equalsIgnoreCase
(
"simple"
)))
{
byte
[]
encodedPw
=
null
;
try
{
isLdapv3
=
false
;
encodedPw
=
encodePassword
(
pw
,
false
);
res
=
ldapBind
(
name
,
encodedPw
,
ctls
,
null
,
false
);
if
(
res
.
status
==
LdapClient
.
LDAP_SUCCESS
)
{
conn
.
setBound
();
}
}
catch
(
IOException
e
)
{
NamingException
ne
=
new
CommunicationException
(
authMechanism
+
":"
+
conn
.
host
+
":"
+
conn
.
port
);
ne
.
setRootCause
(
e
);
throw
ne
;
}
finally
{
// If pw was copied to a new array, clear that array as
// a security precaution.
if
(
encodedPw
!=
pw
&&
encodedPw
!=
null
)
{
for
(
int
i
=
0
;
i
<
encodedPw
.
length
;
i
++)
{
encodedPw
[
i
]
=
0
;
}
}
}
}
}
// principal name not found
// (map NameNotFoundException to AuthenticationException)
// %%% This is a workaround for Netscape servers returning
// %%% no such object when the principal name is not found
// %%% Note that when this workaround is applied, it does not allow
// %%% response controls to be recorded by the calling context
if
(
res
.
status
==
LdapClient
.
LDAP_NO_SUCH_OBJECT
)
{
throw
new
AuthenticationException
(
getErrorMessage
(
res
.
status
,
res
.
errorMessage
));
// principal name not found
// (map NameNotFoundException to AuthenticationException)
// %%% This is a workaround for Netscape servers returning
// %%% no such object when the principal name is not found
// %%% Note that when this workaround is applied, it does not allow
// %%% response controls to be recorded by the calling context
if
(
res
.
status
==
LdapClient
.
LDAP_NO_SUCH_OBJECT
)
{
throw
new
AuthenticationException
(
getErrorMessage
(
res
.
status
,
res
.
errorMessage
));
}
conn
.
setV3
(
isLdapv3
);
return
res
;
}
finally
{
conn
.
readTimeout
=
readTimeout
;
}
conn
.
setV3
(
isLdapv3
);
return
res
;
}
/**
...
...
test/com/sun/jndi/ldap/LdapTimeoutTest.java
0 → 100644
浏览文件 @
3e0d71df
/*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* 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
* @bug 7094377 8000487 6176036 7056489
* @summary Timeout tests for ldap
*/
import
java.net.Socket
;
import
java.net.ServerSocket
;
import
java.net.SocketTimeoutException
;
import
java.io.*
;
import
javax.naming.*
;
import
javax.naming.directory.*
;
import
java.util.Hashtable
;
import
java.util.concurrent.Callable
;
import
java.util.concurrent.Executors
;
import
java.util.concurrent.ScheduledExecutorService
;
import
java.util.concurrent.ScheduledFuture
;
import
java.util.concurrent.TimeUnit
;
public
class
LdapTimeoutTest
{
private
static
final
ScheduledExecutorService
pool
=
Executors
.
newScheduledThreadPool
(
1
);
static
volatile
int
passed
=
0
,
failed
=
0
;
static
void
pass
()
{
passed
++;}
static
void
fail
()
{
failed
++;
Thread
.
dumpStack
();}
public
static
void
main
(
String
[]
args
)
throws
Exception
{
ServerSocket
serverSock
=
new
ServerSocket
(
0
);
Server
s
=
new
Server
(
serverSock
);
s
.
start
();
Thread
.
sleep
(
200
);
Hashtable
env
=
new
Hashtable
(
11
);
env
.
put
(
Context
.
INITIAL_CONTEXT_FACTORY
,
"com.sun.jndi.ldap.LdapCtxFactory"
);
env
.
put
(
Context
.
PROVIDER_URL
,
"ldap://localhost:"
+
serverSock
.
getLocalPort
());
env
.
put
(
Context
.
SECURITY_AUTHENTICATION
,
"simple"
);
env
.
put
(
Context
.
SECURITY_PRINCIPAL
,
"user"
);
env
.
put
(
Context
.
SECURITY_CREDENTIALS
,
"password"
);
env
.
put
(
"com.sun.jndi.ldap.connect.timeout"
,
"10"
);
env
.
put
(
"com.sun.jndi.ldap.read.timeout"
,
"3000"
);
InitialContext
ctx
=
null
;
try
{
new
LdapTimeoutTest
().
ldapReadTimeoutTest
(
env
,
false
);
new
LdapTimeoutTest
().
ldapReadTimeoutTest
(
env
,
true
);
new
LdapTimeoutTest
().
simpleAuthConnectTest
(
env
);
}
finally
{
s
.
interrupt
();
LdapTimeoutTest
.
pool
.
shutdown
();
}
System
.
out
.
printf
(
"%nPassed = %d, failed = %d%n%n"
,
passed
,
failed
);
if
(
failed
>
0
)
throw
new
AssertionError
(
"Some tests failed"
);
}
void
ldapReadTimeoutTest
(
Hashtable
env
,
boolean
ssl
)
{
InitialContext
ctx
=
null
;
if
(
ssl
)
env
.
put
(
Context
.
SECURITY_PROTOCOL
,
"ssl"
);
ScheduledFuture
killer
=
killSwitch
();
long
start
=
System
.
nanoTime
();
try
{
ctx
=
new
InitialDirContext
(
env
);
SearchControls
scl
=
new
SearchControls
();
scl
.
setSearchScope
(
SearchControls
.
SUBTREE_SCOPE
);
NamingEnumeration
<
SearchResult
>
answer
=
((
InitialDirContext
)
ctx
)
.
search
(
"ou=People,o=JNDITutorial"
,
"(objectClass=*)"
,
scl
);
// shouldn't reach here
fail
();
}
catch
(
NamingException
e
)
{
if
(
ssl
)
{
if
(
e
.
getCause
()
instanceof
SocketTimeoutException
)
{
pass
();
}
else
if
(
e
.
getCause
()
instanceof
InterruptedIOException
)
{
Thread
.
interrupted
();
fail
();
}
}
else
{
pass
();
}
}
finally
{
if
(!
shutItDown
(
killer
,
ctx
))
fail
();
}
}
void
simpleAuthConnectTest
(
Hashtable
env
)
{
InitialContext
ctx
=
null
;
ScheduledFuture
killer
=
killSwitch
();
long
start
=
System
.
nanoTime
();
try
{
ctx
=
new
InitialDirContext
(
env
);
// shouldn't reach here
System
.
err
.
println
(
"Fail: InitialDirContext succeeded"
);
fail
();
}
catch
(
NamingException
e
)
{
long
end
=
System
.
nanoTime
();
if
(
e
.
getCause
()
instanceof
SocketTimeoutException
)
{
if
(
TimeUnit
.
NANOSECONDS
.
toMillis
(
end
-
start
)
<
2900
)
{
pass
();
}
else
{
System
.
err
.
println
(
"Fail: Waited too long"
);
fail
();
}
}
else
if
(
e
.
getCause
()
instanceof
InterruptedIOException
)
{
Thread
.
interrupted
();
fail
();
}
else
{
fail
();
}
}
finally
{
if
(!
shutItDown
(
killer
,
ctx
))
fail
();
}
}
boolean
shutItDown
(
ScheduledFuture
killer
,
InitialContext
ctx
)
{
killer
.
cancel
(
true
);
try
{
if
(
ctx
!=
null
)
ctx
.
close
();
return
true
;
}
catch
(
NamingException
ex
)
{
return
false
;
}
}
ScheduledFuture
killSwitch
()
{
final
Thread
current
=
Thread
.
currentThread
();
return
LdapTimeoutTest
.
pool
.
schedule
(
new
Callable
<
Void
>()
{
public
Void
call
()
throws
Exception
{
System
.
err
.
println
(
"Fail: killSwitch()"
);
current
.
interrupt
();
return
null
;
}
},
5000
,
TimeUnit
.
MILLISECONDS
);
}
static
class
Server
extends
Thread
{
final
ServerSocket
serverSock
;
Server
(
ServerSocket
serverSock
)
{
this
.
serverSock
=
serverSock
;
}
public
void
run
()
{
try
{
Socket
socket
=
serverSock
.
accept
();
}
catch
(
IOException
e
)
{}
}
}
}
test/com/sun/jndi/ldap/LdapsReadTimeoutTest.java
已删除
100644 → 0
浏览文件 @
51c31e33
/*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* 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
* @bug 7094377
* @summary Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
*/
import
java.net.Socket
;
import
java.net.ServerSocket
;
import
java.io.*
;
import
javax.naming.*
;
import
javax.naming.directory.*
;
import
java.util.Hashtable
;
public
class
LdapsReadTimeoutTest
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
boolean
passed
=
false
;
// create the server
try
(
Server
server
=
Server
.
create
())
{
// Set up the environment for creating the initial context
Hashtable
<
String
,
Object
>
env
=
new
Hashtable
<>(
11
);
env
.
put
(
Context
.
INITIAL_CONTEXT_FACTORY
,
"com.sun.jndi.ldap.LdapCtxFactory"
);
env
.
put
(
"com.sun.jndi.ldap.connect.timeout"
,
"1000"
);
env
.
put
(
"com.sun.jndi.ldap.read.timeout"
,
"1000"
);
env
.
put
(
Context
.
PROVIDER_URL
,
"ldaps://localhost:"
+
server
.
port
());
// Create initial context
DirContext
ctx
=
new
InitialDirContext
(
env
);
try
{
System
.
out
.
println
(
"LDAP Client: Connected to the Server"
);
SearchControls
scl
=
new
SearchControls
();
scl
.
setSearchScope
(
SearchControls
.
SUBTREE_SCOPE
);
System
.
out
.
println
(
"Performing Search"
);
NamingEnumeration
<
SearchResult
>
answer
=
ctx
.
search
(
"ou=People,o=JNDITutorial"
,
"(objectClass=*)"
,
scl
);
}
finally
{
// Close the context when we're done
ctx
.
close
();
}
}
catch
(
NamingException
e
)
{
passed
=
true
;
e
.
printStackTrace
();
}
if
(!
passed
)
{
throw
new
Exception
(
"Read timeout test failed,"
+
" read timeout exception not thrown"
);
}
System
.
out
.
println
(
"The test PASSED"
);
}
static
class
Server
implements
Runnable
,
Closeable
{
private
final
ServerSocket
ss
;
private
Socket
sref
;
private
Server
(
ServerSocket
ss
)
{
this
.
ss
=
ss
;
}
static
Server
create
()
throws
IOException
{
Server
server
=
new
Server
(
new
ServerSocket
(
0
));
new
Thread
(
server
).
start
();
return
server
;
}
int
port
()
{
return
ss
.
getLocalPort
();
}
public
void
run
()
{
try
(
Socket
s
=
ss
.
accept
())
{
sref
=
s
;
System
.
out
.
println
(
"Server: Connection accepted"
);
BufferedInputStream
bis
=
new
BufferedInputStream
(
s
.
getInputStream
());
byte
[]
buf
=
new
byte
[
100
];
int
n
;
do
{
n
=
bis
.
read
(
buf
);
}
while
(
n
>
0
);
}
catch
(
IOException
e
)
{
// ignore
}
}
public
void
close
()
throws
IOException
{
ss
.
close
();
sref
.
close
();
}
}
}
test/com/sun/jndi/ldap/ReadTimeoutTest.java
已删除
100644 → 0
浏览文件 @
51c31e33
/*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* 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
* @bug 6176036 7056489
* @summary Read-timeout specification for LDAP operations
*/
import
java.net.Socket
;
import
java.net.ServerSocket
;
import
java.io.*
;
import
javax.naming.*
;
import
javax.naming.directory.*
;
import
java.util.Hashtable
;
public
class
ReadTimeoutTest
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
boolean
passed
=
false
;
// create the server
try
(
Server
server
=
Server
.
create
())
{
// Set up the environment for creating the initial context
Hashtable
<
String
,
Object
>
env
=
new
Hashtable
<>(
11
);
env
.
put
(
Context
.
INITIAL_CONTEXT_FACTORY
,
"com.sun.jndi.ldap.LdapCtxFactory"
);
env
.
put
(
"com.sun.jndi.ldap.read.timeout"
,
"1000"
);
env
.
put
(
Context
.
PROVIDER_URL
,
"ldap://localhost:"
+
server
.
port
());
// Create initial context
DirContext
ctx
=
new
InitialDirContext
(
env
);
try
{
System
.
out
.
println
(
"LDAP Client: Connected to the Server"
);
SearchControls
scl
=
new
SearchControls
();
scl
.
setSearchScope
(
SearchControls
.
SUBTREE_SCOPE
);
System
.
out
.
println
(
"Performing Search"
);
NamingEnumeration
<
SearchResult
>
answer
=
ctx
.
search
(
"ou=People,o=JNDITutorial"
,
"(objectClass=*)"
,
scl
);
}
finally
{
// Close the context when we're done
ctx
.
close
();
}
}
catch
(
NamingException
e
)
{
passed
=
true
;
e
.
printStackTrace
();
}
if
(!
passed
)
{
throw
new
Exception
(
"Read timeout test failed,"
+
" read timeout exception not thrown"
);
}
System
.
out
.
println
(
"The test PASSED"
);
}
static
class
Server
implements
Runnable
,
Closeable
{
private
final
ServerSocket
ss
;
private
Server
(
ServerSocket
ss
)
{
this
.
ss
=
ss
;
}
static
Server
create
()
throws
IOException
{
Server
server
=
new
Server
(
new
ServerSocket
(
0
));
new
Thread
(
server
).
start
();
return
server
;
}
int
port
()
{
return
ss
.
getLocalPort
();
}
public
void
run
()
{
try
(
Socket
s
=
ss
.
accept
())
{
System
.
out
.
println
(
"Server: Connection accepted"
);
BufferedInputStream
bis
=
new
BufferedInputStream
(
s
.
getInputStream
());
byte
[]
buf
=
new
byte
[
100
];
int
n
;
do
{
n
=
bis
.
read
(
buf
);
}
while
(
n
>
0
);
}
catch
(
IOException
e
)
{
// ignore
}
}
public
void
close
()
throws
IOException
{
ss
.
close
();
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录