Skip to content

Commit

Permalink
fix: session regeneration (#12864)
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Kane <[email protected]>
Co-authored-by: Emanuele Stoppa <[email protected]>
  • Loading branch information
3 people authored Jan 2, 2025
1 parent 8809b85 commit 440d8a5
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/hot-baboons-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Fixes a bug where the session ID wasn't correctly regenerated
3 changes: 1 addition & 2 deletions packages/astro/src/core/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,8 @@ export class AstroSession<TDriver extends SessionDriverName = any> {
const oldSessionId = this.#sessionID;

// Create new session
this.#sessionID = undefined;
this.#sessionID = crypto.randomUUID();
this.#data = data;
this.#ensureSessionID();
await this.#setCookie();

// Clean up old session asynchronously
Expand Down
47 changes: 47 additions & 0 deletions packages/astro/test/sessions.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import assert from 'node:assert/strict';
import { before, describe, it } from 'node:test';
import testAdapter from './test-adapter.js';
import { loadFixture } from './test-utils.js';

describe('Astro.session', () => {
/** @type {import('./test-utils').Fixture} */
let fixture;

before(async () => {
fixture = await loadFixture({
root: './fixtures/sessions/',
output: 'server',
adapter: testAdapter(),
});
});

describe('Production', () => {
let app;
before(async () => {
await fixture.build();
app = await fixture.loadTestAdapterApp();
});

async function fetchResponse(path, requestInit) {
const request = new Request('http://example.com' + path, requestInit);
const response = await app.render(request);
return response;
}

it('can regenerate session cookies upon request', async () => {
const firstResponse = await fetchResponse('/regenerate', { method: 'GET' });
const firstHeaders = Array.from(app.setCookieHeaders(firstResponse));
const firstSessionId = firstHeaders[0].split(';')[0].split('=')[1];

const secondResponse = await fetchResponse('/regenerate', {
method: 'GET',
headers: {
cookie: `astro-session=${firstSessionId}`,
},
});
const secondHeaders = Array.from(app.setCookieHeaders(secondResponse));
const secondSessionId = secondHeaders[0].split(';')[0].split('=')[1];
assert.notEqual(firstSessionId, secondSessionId);
});
});
});

0 comments on commit 440d8a5

Please sign in to comment.