-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow auto termination of spans #1748
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
192 changes: 192 additions & 0 deletions
192
...onTest/kotlin/io/embrace/android/embracesdk/testcases/features/SpanAutoTerminationTest.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,192 @@ | ||
package io.embrace.android.embracesdk.testcases.features | ||
|
||
import androidx.test.ext.junit.runners.AndroidJUnit4 | ||
import io.embrace.android.embracesdk.assertions.findSpanByName | ||
import io.embrace.android.embracesdk.fakes.config.FakeEnabledFeatureConfig | ||
import io.embrace.android.embracesdk.fakes.config.FakeInstrumentedConfig | ||
import io.embrace.android.embracesdk.internal.payload.Envelope | ||
import io.embrace.android.embracesdk.internal.payload.SessionPayload | ||
import io.embrace.android.embracesdk.spans.AutoTerminationMode | ||
import io.embrace.android.embracesdk.spans.EmbraceSpan | ||
import io.embrace.android.embracesdk.testframework.IntegrationTestRule | ||
import org.junit.Assert.assertEquals | ||
import org.junit.Assert.assertNotNull | ||
import org.junit.Assert.assertNull | ||
import org.junit.Rule | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
|
||
@RunWith(AndroidJUnit4::class) | ||
internal class SpanAutoTerminationTest { | ||
|
||
private companion object { | ||
private const val ROOT_HANGING_SPAN = "root_a" | ||
private const val ROOT_START_SPAN = "root_b" | ||
private const val CHILD_START_SPAN_A = "child_a" | ||
private const val CHILD_START_SPAN_B = "child_b" | ||
private const val CHILD_START_SPAN_C = "child_c" | ||
private const val CHILD_START_SPAN_D = "child_d" | ||
private const val CHILD_START_SPAN_E = "child_e" | ||
private const val ROOT_CREATE_SPAN = "root_c" | ||
private const val ROOT_RECORD_SPAN = "root_d" | ||
private const val ROOT_RECORD_COMPLETED_SPAN = "root_e" | ||
private const val ROOT_STOPPED_SPAN = "root_f" | ||
private const val BG_SPAN = "bg_span" | ||
} | ||
|
||
@Rule | ||
@JvmField | ||
val testRule: IntegrationTestRule = IntegrationTestRule() | ||
|
||
@Test | ||
fun `auto termination feature`() { | ||
var firstSessionStart: Long? = null | ||
var firstSessionEnd: Long? = null | ||
var secondSessionStart: Long? = null | ||
var secondSessionEnd: Long? = null | ||
testRule.runTest( | ||
instrumentedConfig = FakeInstrumentedConfig( | ||
enabledFeatures = FakeEnabledFeatureConfig( | ||
bgActivityCapture = true | ||
) | ||
), | ||
testCaseAction = { | ||
var hangingSpan: EmbraceSpan? = null | ||
|
||
// first session | ||
firstSessionStart = clock.nowInNanos() | ||
recordSession { | ||
// start a span without auto termination | ||
hangingSpan = embrace.startSpan( | ||
ROOT_HANGING_SPAN, | ||
autoTerminationMode = AutoTerminationMode.NONE | ||
) | ||
|
||
// start a span with children and auto termination | ||
val parent = embrace.startSpan( | ||
ROOT_START_SPAN, | ||
autoTerminationMode = AutoTerminationMode.ON_BACKGROUND | ||
) | ||
embrace.startSpan( | ||
CHILD_START_SPAN_A, | ||
parent = parent, | ||
autoTerminationMode = AutoTerminationMode.ON_BACKGROUND | ||
) | ||
val childB = embrace.startSpan(CHILD_START_SPAN_B, parent = parent) | ||
embrace.startSpan(CHILD_START_SPAN_C, parent = childB) | ||
|
||
val childD = embrace.startSpan(CHILD_START_SPAN_D, parent = parent) | ||
embrace.startSpan(CHILD_START_SPAN_E, parent = childD) | ||
childD?.stop() | ||
|
||
// create a span with auto termination | ||
embrace.createSpan( | ||
ROOT_CREATE_SPAN, | ||
autoTerminationMode = AutoTerminationMode.ON_BACKGROUND | ||
)?.start() | ||
|
||
// record a span | ||
embrace.recordSpan(ROOT_RECORD_SPAN) { | ||
embrace.addBreadcrumb("Hello, world!") | ||
} | ||
|
||
// record a completed span | ||
embrace.recordCompletedSpan( | ||
ROOT_RECORD_COMPLETED_SPAN, | ||
clock.now() - 1000, | ||
clock.now() | ||
) | ||
|
||
// stop a span with auto termination | ||
embrace.createSpan( | ||
ROOT_STOPPED_SPAN, | ||
autoTerminationMode = AutoTerminationMode.ON_BACKGROUND | ||
)?.apply { | ||
start() | ||
stop() | ||
} | ||
} | ||
firstSessionEnd = clock.nowInNanos() | ||
|
||
|
||
// background activity | ||
embrace.startSpan(BG_SPAN, autoTerminationMode = AutoTerminationMode.ON_BACKGROUND) | ||
|
||
// second session | ||
secondSessionStart = clock.nowInNanos() | ||
recordSession { | ||
// stop a span without auto termination | ||
hangingSpan?.stop() | ||
} | ||
secondSessionEnd = clock.nowInNanos() | ||
}, | ||
assertAction = { | ||
val message = getSessionEnvelopes(2) | ||
assertFirstSpans(message[0], checkNotNull(firstSessionStart), checkNotNull(firstSessionEnd)) | ||
assertSecondSpans(message[1], checkNotNull(secondSessionStart), checkNotNull(secondSessionEnd)) | ||
} | ||
) | ||
} | ||
|
||
private fun assertFirstSpans( | ||
first: Envelope<SessionPayload>, | ||
sessionStart: Long, | ||
sessionEnd: Long | ||
) { | ||
// startSpan() with children | ||
val rootb = first.findSpanByName(ROOT_START_SPAN) | ||
assertEquals(sessionEnd, rootb.endTimeNanos) | ||
|
||
val childa = first.findSpanByName(CHILD_START_SPAN_A) | ||
assertEquals(sessionEnd, childa.endTimeNanos) | ||
|
||
val childb = first.findSpanByName(CHILD_START_SPAN_B) | ||
assertEquals(sessionEnd, childb.endTimeNanos) | ||
|
||
val childc = first.findSpanByName(CHILD_START_SPAN_C) | ||
assertEquals(sessionEnd, childc.endTimeNanos) | ||
|
||
val childd = first.findSpanByName(CHILD_START_SPAN_D) | ||
assertEquals(sessionStart, childd.endTimeNanos) | ||
|
||
val childe = first.findSpanByName(CHILD_START_SPAN_E) | ||
assertEquals(sessionEnd, childe.endTimeNanos) | ||
|
||
// createSpan() | ||
val rootc = first.findSpanByName(ROOT_CREATE_SPAN) | ||
assertEquals(sessionEnd, rootc.endTimeNanos) | ||
|
||
// recordSpan() | ||
val rootd = first.findSpanByName(ROOT_RECORD_SPAN) | ||
assertEquals(rootd.startTimeNanos, rootd.endTimeNanos) | ||
|
||
// recordCompletedSpan() | ||
val roote = first.findSpanByName(ROOT_RECORD_COMPLETED_SPAN) | ||
assertNotNull(roote.endTimeNanos) | ||
|
||
// stopped span | ||
val rootf = first.findSpanByName(ROOT_STOPPED_SPAN) | ||
assertEquals(rootf.startTimeNanos, rootf.endTimeNanos) | ||
|
||
// non-terminated span | ||
val hangingSpan = | ||
checkNotNull(first.data.spanSnapshots?.single { it.name == ROOT_HANGING_SPAN }) | ||
assertNull(hangingSpan.endTimeNanos) | ||
} | ||
|
||
private fun assertSecondSpans( | ||
second: Envelope<SessionPayload>, | ||
sessionStart: Long, | ||
sessionEnd: Long | ||
) { | ||
// hanging span + session span, no auto-terminated spans carried over | ||
assertEquals(3, second.data.spans?.size) | ||
|
||
val roota = second.findSpanByName(ROOT_HANGING_SPAN) | ||
assertEquals(sessionStart, roota.endTimeNanos) | ||
|
||
// spans in background activity are not auto-terminated until the next session ends | ||
val bgSpan = second.findSpanByName(BG_SPAN) | ||
assertEquals(sessionEnd, bgSpan.endTimeNanos) | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will you be adding unit tests that verify this works with different edge-case combinations of descendants which might change the traversal logic? Like if a child is no longer active, but the grand child is active?