Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions storm-client/src/jvm/org/apache/storm/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -652,9 +652,11 @@ public static void handleUncaughtException(Throwable t, Set<Class<?>> allowedExc
}
}

if (allowedExceptions.contains(t.getClass())) {
LOG.info("Swallowing {} {}", t.getClass(), t);
return;
for (Class<?> classType : allowedExceptions) {
if (Utils.exceptionCauseIsInstanceOf(classType, t)) {
LOG.info("Swallowing {} {}", t.getClass(), t);
return;
}
}

if (worker && isAllowedWorkerException(t)) {
Expand Down
44 changes: 44 additions & 0 deletions storm-client/test/jvm/org/apache/storm/utils/UtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,17 @@

package org.apache.storm.utils;

import java.io.IOException;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.NavigableMap;
import java.util.Set;
import java.util.concurrent.ThreadLocalRandom;
import java.util.stream.Collectors;

Expand All @@ -42,6 +46,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import static org.apache.storm.utils.Utils.handleUncaughtException;
import static org.junit.jupiter.api.Assertions.*;

public class UtilsTest {
Expand Down Expand Up @@ -473,4 +478,43 @@ public List<CycleDetectionScenario> createTestScenarios() {
fail(String.join("\n", testFailures));
}
}

@Test
public void testHandleUncaughtExceptionSwallowsCausedAndDerivedExceptions() {
Set<Class<?>> allowedExceptions = new HashSet<>(Arrays.asList(new Class<?>[]{ IOException.class }));
try {
handleUncaughtException(new IOException(), allowedExceptions, false);
} catch(Throwable unexpected) {
fail("Should have swallowed IOException!", unexpected);
}

try {
handleUncaughtException(new SocketException(), allowedExceptions, false);
} catch(Throwable unexpected) {
fail("Should have swallowed Throwable derived from IOException!", unexpected);
}

try {
handleUncaughtException(new TTransportException(new IOException()), allowedExceptions, false);
} catch(Throwable unexpected) {
fail("Should have swallowed Throwable caused by an IOException!", unexpected);
}

try {
handleUncaughtException(new TTransportException(new SocketException()), allowedExceptions, false);
} catch(Throwable unexpected) {
fail("Should have swallowed Throwable caused by a Throwable derived from IOException!", unexpected);
}

Throwable t = new NullPointerException();
String expectationMessage = "Should have thrown an Error() with a cause of NullPointerException";
try {
handleUncaughtException(t, allowedExceptions, false);
fail(expectationMessage);
} catch(Error expected) {
assertEquals(expected.getCause(), t, expectationMessage);
} catch(Throwable unexpected) {
fail(expectationMessage, unexpected);
}
}
}