-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plugin for controlling whether or not to fill in stacktraces (#124)
* Implement fillInOutsideLifecycleExceptionStacktraces plugin This implements support for controlling whether or not `OutsideLifecycleException`s fill in their stacktraces. This is a potentially expensive operation that is often used just for signaling, so we can save a little perf here. * Add tests
- Loading branch information
Showing
3 changed files
with
91 additions
and
1 deletion.
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
60 changes: 60 additions & 0 deletions
60
autodispose/src/test/java/com/uber/autodispose/AutoDisposePluginsTest.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,60 @@ | ||
/* | ||
* Copyright (c) 2017. Uber Technologies | ||
* | ||
* 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 | ||
* | ||
* http://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 com.uber.autodispose; | ||
|
||
import org.junit.After; | ||
import org.junit.Test; | ||
|
||
import static com.google.common.truth.Truth.assertThat; | ||
|
||
public final class AutoDisposePluginsTest { | ||
|
||
@After public void tearDown() { | ||
AutoDisposePlugins.reset(); | ||
} | ||
|
||
@Test public void noStacktraceFill_shouldHaveNoStacktrace() { | ||
AutoDisposePlugins.setFillInOutsideLifecycleExceptionStacktraces(false); | ||
|
||
LifecycleNotStartedException started = | ||
new LifecycleNotStartedException("Lifecycle not started"); | ||
assertThat(started.getStackTrace()).isEmpty(); | ||
|
||
LifecycleEndedException ended = new LifecycleEndedException("Lifecycle ended"); | ||
assertThat(ended.getStackTrace()).isEmpty(); | ||
} | ||
|
||
@Test public void defaultStacktraceFill_shouldHaveStacktrace() { | ||
LifecycleNotStartedException started = | ||
new LifecycleNotStartedException("Lifecycle not started"); | ||
assertThat(started.getStackTrace()).isNotEmpty(); | ||
|
||
LifecycleEndedException ended = new LifecycleEndedException("Lifecycle ended"); | ||
assertThat(ended.getStackTrace()).isNotEmpty(); | ||
} | ||
|
||
@Test public void trueStacktraceFill_shouldHaveStacktrace() { | ||
AutoDisposePlugins.setFillInOutsideLifecycleExceptionStacktraces(true); | ||
|
||
LifecycleNotStartedException started = | ||
new LifecycleNotStartedException("Lifecycle not started"); | ||
assertThat(started.getStackTrace()).isNotEmpty(); | ||
|
||
LifecycleEndedException ended = new LifecycleEndedException("Lifecycle ended"); | ||
assertThat(ended.getStackTrace()).isNotEmpty(); | ||
} | ||
} |