mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
feat: Refresh Token for improved Session Security (#927)
* feat(api): refresh token logic * feat(client): refresh token logic * feat(data-provider): refresh token logic * fix: SSE uses esm * chore: add default refresh token expiry to AuthService, add message about env var not set when generating a token * chore: update scripts to more compatible bun methods, ran bun install again * chore: update env.example and playwright workflow with JWT_REFRESH_SECRET * chore: update breaking changes docs * chore: add timeout to url visit * chore: add default SESSION_EXPIRY in generateToken logic, add act script for testing github actions * fix(e2e): refresh automatically in development environment to pass e2e tests
This commit is contained in:
parent
75be9a3279
commit
33f087d38f
31 changed files with 420 additions and 232 deletions
|
|
@ -19,7 +19,7 @@ const waitForServerStream = async (response: Response) => {
|
|||
};
|
||||
|
||||
async function clearConvos(page: Page) {
|
||||
await page.goto(initialUrl);
|
||||
await page.goto(initialUrl, { timeout: 5000 });
|
||||
await page.getByRole('button', { name: 'test' }).click();
|
||||
await page.getByText('Settings').click();
|
||||
await page.getByTestId('clear-convos-initial').click();
|
||||
|
|
@ -47,7 +47,7 @@ test.afterAll(async () => {
|
|||
});
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto(initialUrl);
|
||||
await page.goto(initialUrl, { timeout: 5000 });
|
||||
});
|
||||
|
||||
test.afterEach(async ({ page }) => {
|
||||
|
|
@ -60,7 +60,7 @@ test.describe('Messaging suite', () => {
|
|||
}) => {
|
||||
test.setTimeout(120000);
|
||||
const message = 'hi';
|
||||
await page.goto(initialUrl);
|
||||
await page.goto(initialUrl, { timeout: 5000 });
|
||||
await page.locator('#new-conversation-menu').click();
|
||||
await page.locator(`#${endpoint}`).click();
|
||||
await page.locator('form').getByRole('textbox').click();
|
||||
|
|
@ -125,7 +125,7 @@ test.describe('Messaging suite', () => {
|
|||
|
||||
test('message should stop and continue', async ({ page }) => {
|
||||
const message = 'write me a 10 stanza poem about space';
|
||||
await page.goto(initialUrl);
|
||||
await page.goto(initialUrl, { timeout: 5000 });
|
||||
|
||||
await page.locator('#new-conversation-menu').click();
|
||||
await page.locator(`#${endpoint}`).click();
|
||||
|
|
@ -161,7 +161,7 @@ test.describe('Messaging suite', () => {
|
|||
|
||||
// in this spec as we are testing post-message navigation, we are not testing the message response
|
||||
test('Page navigations', async ({ page }) => {
|
||||
await page.goto(initialUrl);
|
||||
await page.goto(initialUrl, { timeout: 5000 });
|
||||
await page.getByTestId('convo-icon').first().click({ timeout: 5000 });
|
||||
const currentUrl = page.url();
|
||||
const conversationId = currentUrl.split(basePath).pop() ?? '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue