Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
3035acf6
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看板
提交
3035acf6
编写于
9月 16, 2014
作者:
S
sjiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8042205: javax/management/monitor/*: some tests didn't get all the notifications
Reviewed-by: dfuchs
上级
74136751
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
132 addition
and
67 deletion
+132
-67
test/javax/management/monitor/AttributeArbitraryDataTypeTest.java
...ax/management/monitor/AttributeArbitraryDataTypeTest.java
+51
-6
test/javax/management/monitor/CounterMonitorTest.java
test/javax/management/monitor/CounterMonitorTest.java
+9
-19
test/javax/management/monitor/NonComparableAttributeValueTest.java
...x/management/monitor/NonComparableAttributeValueTest.java
+24
-14
test/javax/management/monitor/ReflectionExceptionTest.java
test/javax/management/monitor/ReflectionExceptionTest.java
+24
-14
test/javax/management/monitor/RuntimeExceptionTest.java
test/javax/management/monitor/RuntimeExceptionTest.java
+24
-14
未找到文件。
test/javax/management/monitor/AttributeArbitraryDataTypeTest.java
浏览文件 @
3035acf6
...
...
@@ -58,9 +58,9 @@ import javax.management.openmbean.SimpleType;
public
class
AttributeArbitraryDataTypeTest
implements
NotificationListener
{
// Flag to notify that a message has been received
private
boolean
counterMessageReceived
=
false
;
private
boolean
gaugeMessageReceived
=
false
;
private
boolean
stringMessageReceived
=
false
;
private
volatile
boolean
counterMessageReceived
=
false
;
private
volatile
boolean
gaugeMessageReceived
=
false
;
private
volatile
boolean
stringMessageReceived
=
false
;
// Match enum
public
enum
Match
{
do_not_match_0
,
...
...
@@ -195,21 +195,33 @@ public class AttributeArbitraryDataTypeTest implements NotificationListener {
" has reached or exceeded the threshold"
);
echo
(
"\t\tDerived Gauge = "
+
n
.
getDerivedGauge
());
echo
(
"\t\tTrigger = "
+
n
.
getTrigger
());
counterMessageReceived
=
true
;
synchronized
(
this
)
{
counterMessageReceived
=
true
;
notifyAll
();
}
}
else
if
(
type
.
equals
(
MonitorNotification
.
THRESHOLD_HIGH_VALUE_EXCEEDED
))
{
echo
(
"\t\t"
+
n
.
getObservedAttribute
()
+
" has reached or exceeded the high threshold"
);
echo
(
"\t\tDerived Gauge = "
+
n
.
getDerivedGauge
());
echo
(
"\t\tTrigger = "
+
n
.
getTrigger
());
gaugeMessageReceived
=
true
;
synchronized
(
this
)
{
gaugeMessageReceived
=
true
;
notifyAll
();
}
}
else
if
(
type
.
equals
(
MonitorNotification
.
STRING_TO_COMPARE_VALUE_MATCHED
))
{
echo
(
"\t\t"
+
n
.
getObservedAttribute
()
+
" matches the string-to-compare value"
);
echo
(
"\t\tDerived Gauge = "
+
n
.
getDerivedGauge
());
echo
(
"\t\tTrigger = "
+
n
.
getTrigger
());
stringMessageReceived
=
true
;
synchronized
(
this
)
{
stringMessageReceived
=
true
;
notifyAll
();
}
}
else
{
echo
(
"\t\tSkipping notification of type: "
+
type
);
}
...
...
@@ -358,6 +370,17 @@ public class AttributeArbitraryDataTypeTest implements NotificationListener {
// Check if notification was received
//
synchronized
(
this
)
{
while
(!
counterMessageReceived
)
{
try
{
wait
();
}
catch
(
InterruptedException
e
)
{
System
.
err
.
println
(
"Got unexpected exception: "
+
e
);
e
.
printStackTrace
();
break
;
}
}
}
if
(
counterMessageReceived
)
{
echo
(
"\tOK: CounterMonitor notification received"
);
}
else
{
...
...
@@ -525,6 +548,17 @@ public class AttributeArbitraryDataTypeTest implements NotificationListener {
// Check if notification was received
//
synchronized
(
this
)
{
while
(!
gaugeMessageReceived
)
{
try
{
wait
();
}
catch
(
InterruptedException
e
)
{
System
.
err
.
println
(
"Got unexpected exception: "
+
e
);
e
.
printStackTrace
();
break
;
}
}
}
if
(
gaugeMessageReceived
)
{
echo
(
"\tOK: GaugeMonitor notification received"
);
}
else
{
...
...
@@ -680,6 +714,17 @@ public class AttributeArbitraryDataTypeTest implements NotificationListener {
// Check if notification was received
//
synchronized
(
this
)
{
while
(!
stringMessageReceived
)
{
try
{
wait
();
}
catch
(
InterruptedException
e
)
{
System
.
err
.
println
(
"Got unexpected exception: "
+
e
);
e
.
printStackTrace
();
break
;
}
}
}
if
(
stringMessageReceived
)
{
echo
(
"\tOK: StringMonitor notification received"
);
}
else
{
...
...
test/javax/management/monitor/CounterMonitorTest.java
浏览文件 @
3035acf6
...
...
@@ -43,9 +43,6 @@ public class CounterMonitorTest implements NotificationListener {
// modulus number
private
Number
modulus
=
new
Integer
(
7
);
// offset number
private
int
offset
=
0
;
// difference mode flag
private
boolean
differenceModeFlag
=
true
;
...
...
@@ -58,9 +55,6 @@ public class CounterMonitorTest implements NotificationListener {
// counter values
private
int
[]
values
=
new
int
[]
{
4
,
6
,
9
,
11
};
// time to wait for notification (in seconds)
private
int
timeout
=
5
;
// flag to notify that a message has been received
private
volatile
boolean
messageReceived
=
false
;
...
...
@@ -92,8 +86,9 @@ public class CounterMonitorTest implements NotificationListener {
echo
(
"\t\t"
+
n
.
getObservedAttribute
()
+
" has reached or exceeded the threshold"
);
echo
(
"\t\tDerived Gauge = "
+
n
.
getDerivedGauge
());
messageReceived
=
true
;
synchronized
(
this
)
{
messageReceived
=
true
;
notifyAll
();
}
}
else
{
...
...
@@ -205,21 +200,16 @@ public class CounterMonitorTest implements NotificationListener {
}
/*
* Wait
until timeout reached
* Wait
messageReceived to be true
*/
void
doWait
()
{
for
(
int
i
=
0
;
i
<
timeout
;
i
++)
{
echo
(
"\tdoWait: Waiting for "
+
timeout
+
" seconds. "
+
"i = "
+
i
+
", messageReceived = "
+
messageReceived
);
if
(
messageReceived
)
{
break
;
}
synchronized
void
doWait
()
{
while
(!
messageReceived
)
{
try
{
synchronized
(
this
)
{
wait
(
1000
);
}
wait
();
}
catch
(
InterruptedException
e
)
{
// OK: Ignore...
System
.
err
.
println
(
"Got unexpected exception: "
+
e
);
e
.
printStackTrace
();
break
;
}
}
}
...
...
test/javax/management/monitor/NonComparableAttributeValueTest.java
浏览文件 @
3035acf6
...
...
@@ -39,7 +39,7 @@ import javax.management.monitor.*;
public
class
NonComparableAttributeValueTest
implements
NotificationListener
{
// Flag to notify that a message has been received
private
boolean
messageReceived
=
false
;
private
volatile
boolean
messageReceived
=
false
;
// MBean class
public
class
ObservedObject
implements
ObservedObjectMBean
{
...
...
@@ -69,7 +69,11 @@ public class NonComparableAttributeValueTest implements NotificationListener {
echo
(
"\t\t"
+
n
.
getObservedAttribute
()
+
" is null"
);
echo
(
"\t\tDerived Gauge = "
+
n
.
getDerivedGauge
());
echo
(
"\t\tTrigger = "
+
n
.
getTrigger
());
messageReceived
=
true
;
synchronized
(
this
)
{
messageReceived
=
true
;
notifyAll
();
}
}
else
{
echo
(
"\t\tSkipping notification of type: "
+
type
);
}
...
...
@@ -134,12 +138,9 @@ public class NonComparableAttributeValueTest implements NotificationListener {
echo
(
">>> START the CounterMonitor"
);
counterMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: CounterMonitor notification received"
);
}
else
{
...
...
@@ -212,12 +213,9 @@ public class NonComparableAttributeValueTest implements NotificationListener {
echo
(
">>> START the GaugeMonitor"
);
gaugeMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: GaugeMonitor notification received"
);
}
else
{
...
...
@@ -289,12 +287,9 @@ public class NonComparableAttributeValueTest implements NotificationListener {
echo
(
">>> START the StringMonitor"
);
stringMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: StringMonitor notification received"
);
}
else
{
...
...
@@ -333,6 +328,21 @@ public class NonComparableAttributeValueTest implements NotificationListener {
System
.
out
.
println
(
message
);
}
/*
* Wait messageReceived to be true
*/
synchronized
void
doWait
()
{
while
(!
messageReceived
)
{
try
{
wait
();
}
catch
(
InterruptedException
e
)
{
System
.
err
.
println
(
"Got unexpected exception: "
+
e
);
e
.
printStackTrace
();
break
;
}
}
}
/*
* Standalone entry point.
*
...
...
test/javax/management/monitor/ReflectionExceptionTest.java
浏览文件 @
3035acf6
...
...
@@ -87,7 +87,11 @@ public class ReflectionExceptionTest implements NotificationListener {
echo
(
"\tObservedAttribute: "
+
mn
.
getObservedAttribute
());
echo
(
"\tDerivedGauge: "
+
mn
.
getDerivedGauge
());
echo
(
"\tTrigger: "
+
mn
.
getTrigger
());
messageReceived
=
true
;
synchronized
(
this
)
{
messageReceived
=
true
;
notifyAll
();
}
}
}
}
...
...
@@ -135,12 +139,9 @@ public class ReflectionExceptionTest implements NotificationListener {
echo
(
">>> START the CounterMonitor"
);
counterMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: CounterMonitor got RUNTIME_ERROR notification!"
);
}
else
{
...
...
@@ -203,12 +204,9 @@ public class ReflectionExceptionTest implements NotificationListener {
echo
(
">>> START the GaugeMonitor"
);
gaugeMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: GaugeMonitor got RUNTIME_ERROR notification!"
);
}
else
{
...
...
@@ -270,12 +268,9 @@ public class ReflectionExceptionTest implements NotificationListener {
echo
(
">>> START the StringMonitor"
);
stringMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: StringMonitor got RUNTIME_ERROR notification!"
);
}
else
{
...
...
@@ -349,8 +344,23 @@ public class ReflectionExceptionTest implements NotificationListener {
}
}
/*
* Wait messageReceived to be true
*/
synchronized
void
doWait
()
{
while
(!
messageReceived
)
{
try
{
wait
();
}
catch
(
InterruptedException
e
)
{
System
.
err
.
println
(
"Got unexpected exception: "
+
e
);
e
.
printStackTrace
();
break
;
}
}
}
// Flag to notify that a message has been received
private
boolean
messageReceived
=
false
;
private
volatile
boolean
messageReceived
=
false
;
private
MBeanServer
server
;
private
ObjectName
obsObjName
;
...
...
test/javax/management/monitor/RuntimeExceptionTest.java
浏览文件 @
3035acf6
...
...
@@ -86,7 +86,11 @@ public class RuntimeExceptionTest implements NotificationListener {
echo
(
"\tObservedAttribute: "
+
mn
.
getObservedAttribute
());
echo
(
"\tDerivedGauge: "
+
mn
.
getDerivedGauge
());
echo
(
"\tTrigger: "
+
mn
.
getTrigger
());
messageReceived
=
true
;
synchronized
(
this
)
{
messageReceived
=
true
;
notifyAll
();
}
}
}
}
...
...
@@ -134,12 +138,9 @@ public class RuntimeExceptionTest implements NotificationListener {
echo
(
">>> START the CounterMonitor"
);
counterMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: CounterMonitor got RUNTIME_ERROR notification!"
);
}
else
{
...
...
@@ -202,12 +203,9 @@ public class RuntimeExceptionTest implements NotificationListener {
echo
(
">>> START the GaugeMonitor"
);
gaugeMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: GaugeMonitor got RUNTIME_ERROR notification!"
);
}
else
{
...
...
@@ -269,12 +267,9 @@ public class RuntimeExceptionTest implements NotificationListener {
echo
(
">>> START the StringMonitor"
);
stringMonitor
.
start
();
// Wait for granularity period (multiplied by 2 for sure)
//
Thread
.
sleep
(
granularityperiod
*
2
);
// Check if notification was received
//
doWait
();
if
(
messageReceived
)
{
echo
(
"\tOK: StringMonitor got RUNTIME_ERROR notification!"
);
}
else
{
...
...
@@ -347,8 +342,23 @@ public class RuntimeExceptionTest implements NotificationListener {
}
}
/*
* Wait messageReceived to be true
*/
synchronized
void
doWait
()
{
while
(!
messageReceived
)
{
try
{
wait
();
}
catch
(
InterruptedException
e
)
{
System
.
err
.
println
(
"Got unexpected exception: "
+
e
);
e
.
printStackTrace
();
break
;
}
}
}
// Flag to notify that a message has been received
private
boolean
messageReceived
=
false
;
private
volatile
boolean
messageReceived
=
false
;
private
MBeanServer
server
;
private
ObjectName
obsObjName
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录