-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
160 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
pkl-core/src/main/java/org/pkl/core/util/ExceptionUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* Copyright © 2024 Apple Inc. and the Pkl project authors. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.pkl.core.util; | ||
|
||
public final class ExceptionUtils { | ||
private ExceptionUtils() {} | ||
|
||
public static Throwable getRootCause(Throwable t) { | ||
var result = t; | ||
var cause = result.getCause(); | ||
while (cause != null) { | ||
result = cause; | ||
cause = cause.getCause(); | ||
} | ||
return result; | ||
} | ||
|
||
public static String getRootReason(Throwable t) { | ||
var reason = getRootCause(t).getMessage(); | ||
if (reason == null || reason.isEmpty()) reason = "(unknown reason)"; | ||
return reason; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
pkl-core/src/test/kotlin/org/pkl/core/http/LazyHttpClientTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
pkl-core/src/test/kotlin/org/pkl/core/util/ExceptionUtilsTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package org.pkl.core.util | ||
|
||
import org.assertj.core.api.Assertions.assertThat | ||
import org.junit.jupiter.api.Test | ||
import java.io.IOException | ||
import java.lang.Error | ||
|
||
class ExceptionUtilsTest { | ||
@Test | ||
fun `get root cause of simple exception`() { | ||
val e = IOException("io") | ||
assertThat(ExceptionUtils.getRootCause(e)).isSameAs(e) | ||
} | ||
|
||
@Test | ||
fun `get root cause of nested exception`() { | ||
val e = IOException("io") | ||
val e2 = RuntimeException("runtime") | ||
val e3 = Error("error") | ||
e.initCause(e2) | ||
e2.initCause(e3) | ||
assertThat(ExceptionUtils.getRootCause(e)).isSameAs(e3) | ||
} | ||
|
||
@Test | ||
fun `get root reason`() { | ||
val e = IOException("io") | ||
val e2 = RuntimeException("the root reason") | ||
e.initCause(e2) | ||
assertThat(ExceptionUtils.getRootReason(e)).isEqualTo("the root reason") | ||
} | ||
|
||
@Test | ||
fun `get root reason if null`() { | ||
val e = IOException("io") | ||
val e2 = RuntimeException(null as String?) | ||
e.initCause(e2) | ||
assertThat(ExceptionUtils.getRootReason(e)).isEqualTo("(unknown reason)") | ||
} | ||
|
||
@Test | ||
fun `get root reason if empty`() { | ||
val e = IOException("io") | ||
val e2 = RuntimeException("") | ||
e.initCause(e2) | ||
assertThat(ExceptionUtils.getRootReason(e)).isEqualTo("(unknown reason)") | ||
} | ||
} |