-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(replay): Use
session.started
for min/max duration check (#8617)
We've been using `context.initialTimestamp` to check for min/max session duration, but actually this is always updated when a tab is refreshed, for example. Instead, we now use `session.started`, which should also always be updated for a buffer session. --------- Co-authored-by: Billy Vong <[email protected]>
- Loading branch information
Showing
5 changed files
with
103 additions
and
4 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
packages/browser-integration-tests/suites/replay/maxReplayDuration/init.js
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,23 @@ | ||
import * as Sentry from '@sentry/browser'; | ||
|
||
window.Sentry = Sentry; | ||
window.Replay = new Sentry.Replay({ | ||
flushMinDelay: 200, | ||
flushMaxDelay: 200, | ||
minReplayDuration: 0, | ||
}); | ||
|
||
Sentry.init({ | ||
dsn: 'https://[email protected]/1337', | ||
sampleRate: 0, | ||
replaysSessionSampleRate: 1.0, | ||
replaysOnErrorSampleRate: 0.0, | ||
|
||
integrations: [window.Replay], | ||
}); | ||
|
||
window.Replay._replay.timeouts = { | ||
sessionIdlePause: 1000, // this is usually 5min, but we want to test this with shorter times | ||
sessionIdleExpire: 2000, // this is usually 15min, but we want to test this with shorter times | ||
maxSessionLife: 2000, // default: 60min | ||
}; |
10 changes: 10 additions & 0 deletions
10
packages/browser-integration-tests/suites/replay/maxReplayDuration/template.html
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,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
</head> | ||
<body> | ||
<button onclick="console.log('Test log 1')" id="button1">Click me</button> | ||
<button onclick="console.log('Test log 2')" id="button2">Click me</button> | ||
</body> | ||
</html> |
60 changes: 60 additions & 0 deletions
60
packages/browser-integration-tests/suites/replay/maxReplayDuration/test.ts
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 @@ | ||
import { expect } from '@playwright/test'; | ||
|
||
import { sentryTest } from '../../../utils/fixtures'; | ||
import { getExpectedReplayEvent } from '../../../utils/replayEventTemplates'; | ||
import { getReplayEvent, shouldSkipReplayTest, waitForReplayRequest } from '../../../utils/replayHelpers'; | ||
|
||
const SESSION_MAX_AGE = 2000; | ||
|
||
sentryTest('keeps track of max duration across reloads', async ({ getLocalTestPath, page }) => { | ||
if (shouldSkipReplayTest()) { | ||
sentryTest.skip(); | ||
} | ||
|
||
const reqPromise0 = waitForReplayRequest(page, 0); | ||
const reqPromise1 = waitForReplayRequest(page, 1); | ||
|
||
await page.route('https://dsn.ingest.sentry.io/**/*', route => { | ||
return route.fulfill({ | ||
status: 200, | ||
contentType: 'application/json', | ||
body: JSON.stringify({ id: 'test-id' }), | ||
}); | ||
}); | ||
|
||
const url = await getLocalTestPath({ testDir: __dirname }); | ||
|
||
await page.goto(url); | ||
|
||
await new Promise(resolve => setTimeout(resolve, SESSION_MAX_AGE / 2)); | ||
|
||
await page.reload(); | ||
await page.click('#button1'); | ||
|
||
// After the second reload, we should have a new session (because we exceeded max age) | ||
const reqPromise3 = waitForReplayRequest(page, 0); | ||
|
||
await new Promise(resolve => setTimeout(resolve, SESSION_MAX_AGE / 2 + 100)); | ||
|
||
void page.click('#button1'); | ||
await page.evaluate(`Object.defineProperty(document, 'visibilityState', { | ||
configurable: true, | ||
get: function () { | ||
return 'hidden'; | ||
}, | ||
}); | ||
document.dispatchEvent(new Event('visibilitychange'));`); | ||
|
||
const replayEvent0 = getReplayEvent(await reqPromise0); | ||
expect(replayEvent0).toEqual(getExpectedReplayEvent({})); | ||
|
||
const replayEvent1 = getReplayEvent(await reqPromise1); | ||
expect(replayEvent1).toEqual( | ||
getExpectedReplayEvent({ | ||
segment_id: 1, | ||
}), | ||
); | ||
|
||
const replayEvent3 = getReplayEvent(await reqPromise3); | ||
expect(replayEvent3).toEqual(getExpectedReplayEvent({})); | ||
}); |
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