Disable logging temporarily when running testRegistrationAfterShutdown
This commit is contained in:
parent
0d70ba4938
commit
b8ca01bd9e
@ -328,12 +328,29 @@ public class SingleThreadEventLoopTest {
|
|||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public void testRegistrationAfterShutdown() throws Exception {
|
public void testRegistrationAfterShutdown() throws Exception {
|
||||||
loopA.shutdown();
|
loopA.shutdown();
|
||||||
|
|
||||||
|
// Disable logging temporarily.
|
||||||
|
Logger root = (Logger) LoggerFactory.getLogger(org.slf4j.Logger.ROOT_LOGGER_NAME);
|
||||||
|
List<Appender<ILoggingEvent>> appenders = new ArrayList<Appender<ILoggingEvent>>();
|
||||||
|
for (Iterator<Appender<ILoggingEvent>> i = root.iteratorForAppenders(); i.hasNext();) {
|
||||||
|
Appender<ILoggingEvent> a = i.next();
|
||||||
|
appenders.add(a);
|
||||||
|
root.detachAppender(a);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
Channel channel = new LocalChannel(loopA);
|
Channel channel = new LocalChannel(loopA);
|
||||||
ChannelPromise f = channel.newPromise();
|
ChannelPromise f = channel.newPromise();
|
||||||
channel.unsafe().register(f);
|
channel.unsafe().register(f);
|
||||||
f.awaitUninterruptibly();
|
f.awaitUninterruptibly();
|
||||||
assertFalse(f.isSuccess());
|
assertFalse(f.isSuccess());
|
||||||
assertThat(f.cause(), is(instanceOf(RejectedExecutionException.class)));
|
assertThat(f.cause(), is(instanceOf(RejectedExecutionException.class)));
|
||||||
|
assertFalse(channel.isOpen());
|
||||||
|
} finally {
|
||||||
|
for (Appender<ILoggingEvent> a: appenders) {
|
||||||
|
root.addAppender(a);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(timeout = 10000)
|
@Test(timeout = 10000)
|
||||||
|
Loading…
Reference in New Issue
Block a user