2025-04-25 23:40:15 -07:00
|
|
|
import fs from 'node:fs';
|
|
|
|
|
import path from 'node:path';
|
2025-03-09 21:02:19 -07:00
|
|
|
import { chatModels } from '@/lib/ai/models';
|
2025-04-25 23:40:15 -07:00
|
|
|
import { expect, type Page } from '@playwright/test';
|
2025-03-09 21:02:19 -07:00
|
|
|
|
|
|
|
|
export class ChatPage {
|
|
|
|
|
constructor(private page: Page) {}
|
|
|
|
|
|
|
|
|
|
public get sendButton() {
|
|
|
|
|
return this.page.getByTestId('send-button');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public get stopButton() {
|
|
|
|
|
return this.page.getByTestId('stop-button');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public get multimodalInput() {
|
|
|
|
|
return this.page.getByTestId('multimodal-input');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async createNewChat() {
|
|
|
|
|
await this.page.goto('/');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getCurrentURL(): string {
|
|
|
|
|
return this.page.url();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async sendUserMessage(message: string) {
|
2025-03-11 14:39:36 -07:00
|
|
|
await this.multimodalInput.click();
|
|
|
|
|
await this.multimodalInput.fill(message);
|
|
|
|
|
await this.sendButton.click();
|
2025-03-09 21:02:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async isGenerationComplete() {
|
2025-03-11 14:39:36 -07:00
|
|
|
const response = await this.page.waitForResponse((response) =>
|
|
|
|
|
response.url().includes('/api/chat'),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
await response.finished();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async isVoteComplete() {
|
|
|
|
|
const response = await this.page.waitForResponse((response) =>
|
|
|
|
|
response.url().includes('/api/vote'),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
await response.finished();
|
2025-03-09 21:02:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async hasChatIdInUrl() {
|
|
|
|
|
await expect(this.page).toHaveURL(
|
|
|
|
|
/^http:\/\/localhost:3000\/chat\/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async sendUserMessageFromSuggestion() {
|
|
|
|
|
await this.page
|
|
|
|
|
.getByRole('button', { name: 'What are the advantages of' })
|
|
|
|
|
.click();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async isElementVisible(elementId: string) {
|
|
|
|
|
await expect(this.page.getByTestId(elementId)).toBeVisible();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async isElementNotVisible(elementId: string) {
|
|
|
|
|
await expect(this.page.getByTestId(elementId)).not.toBeVisible();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async addImageAttachment() {
|
|
|
|
|
this.page.on('filechooser', async (fileChooser) => {
|
|
|
|
|
const filePath = path.join(
|
|
|
|
|
process.cwd(),
|
|
|
|
|
'public',
|
|
|
|
|
'images',
|
|
|
|
|
'mouth of the seine, monet.jpg',
|
|
|
|
|
);
|
|
|
|
|
const imageBuffer = fs.readFileSync(filePath);
|
|
|
|
|
|
|
|
|
|
await fileChooser.setFiles({
|
|
|
|
|
name: 'mouth of the seine, monet.jpg',
|
|
|
|
|
mimeType: 'image/jpeg',
|
|
|
|
|
buffer: imageBuffer,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await this.page.getByTestId('attachments-button').click();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async getSelectedModel() {
|
|
|
|
|
const modelId = await this.page.getByTestId('model-selector').innerText();
|
|
|
|
|
return modelId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async chooseModelFromSelector(chatModelId: string) {
|
|
|
|
|
const chatModel = chatModels.find(
|
|
|
|
|
(chatModel) => chatModel.id === chatModelId,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (!chatModel) {
|
|
|
|
|
throw new Error(`Model with id ${chatModelId} not found`);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await this.page.getByTestId('model-selector').click();
|
|
|
|
|
await this.page.getByTestId(`model-selector-item-${chatModelId}`).click();
|
|
|
|
|
expect(await this.getSelectedModel()).toBe(chatModel.name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async getRecentAssistantMessage() {
|
|
|
|
|
const messageElements = await this.page
|
|
|
|
|
.getByTestId('message-assistant')
|
|
|
|
|
.all();
|
|
|
|
|
const lastMessageElement = messageElements[messageElements.length - 1];
|
|
|
|
|
|
|
|
|
|
const content = await lastMessageElement
|
|
|
|
|
.getByTestId('message-content')
|
|
|
|
|
.innerText()
|
|
|
|
|
.catch(() => null);
|
|
|
|
|
|
|
|
|
|
const reasoningElement = await lastMessageElement
|
|
|
|
|
.getByTestId('message-reasoning')
|
|
|
|
|
.isVisible()
|
|
|
|
|
.then(async (visible) =>
|
|
|
|
|
visible
|
|
|
|
|
? await lastMessageElement
|
|
|
|
|
.getByTestId('message-reasoning')
|
|
|
|
|
.innerText()
|
|
|
|
|
: null,
|
|
|
|
|
)
|
|
|
|
|
.catch(() => null);
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
element: lastMessageElement,
|
|
|
|
|
content,
|
|
|
|
|
reasoning: reasoningElement,
|
|
|
|
|
async toggleReasoningVisibility() {
|
|
|
|
|
await lastMessageElement
|
|
|
|
|
.getByTestId('message-reasoning-toggle')
|
|
|
|
|
.click();
|
|
|
|
|
},
|
2025-03-11 14:39:36 -07:00
|
|
|
async upvote() {
|
|
|
|
|
await lastMessageElement.getByTestId('message-upvote').click();
|
|
|
|
|
},
|
|
|
|
|
async downvote() {
|
|
|
|
|
await lastMessageElement.getByTestId('message-downvote').click();
|
|
|
|
|
},
|
2025-03-09 21:02:19 -07:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async getRecentUserMessage() {
|
|
|
|
|
const messageElements = await this.page.getByTestId('message-user').all();
|
|
|
|
|
const lastMessageElement = messageElements[messageElements.length - 1];
|
|
|
|
|
|
2025-04-28 23:18:02 -07:00
|
|
|
const content = await lastMessageElement
|
|
|
|
|
.getByTestId('message-content')
|
|
|
|
|
.innerText()
|
|
|
|
|
.catch(() => null);
|
2025-03-09 21:02:19 -07:00
|
|
|
|
|
|
|
|
const hasAttachments = await lastMessageElement
|
|
|
|
|
.getByTestId('message-attachments')
|
|
|
|
|
.isVisible()
|
|
|
|
|
.catch(() => false);
|
|
|
|
|
|
|
|
|
|
const attachments = hasAttachments
|
|
|
|
|
? await lastMessageElement.getByTestId('message-attachments').all()
|
|
|
|
|
: [];
|
|
|
|
|
|
|
|
|
|
const page = this.page;
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
element: lastMessageElement,
|
|
|
|
|
content,
|
|
|
|
|
attachments,
|
|
|
|
|
async edit(newMessage: string) {
|
2025-03-16 18:42:29 -07:00
|
|
|
await page.getByTestId('message-edit-button').click();
|
2025-03-09 21:02:19 -07:00
|
|
|
await page.getByTestId('message-editor').fill(newMessage);
|
|
|
|
|
await page.getByTestId('message-editor-send-button').click();
|
|
|
|
|
await expect(
|
|
|
|
|
page.getByTestId('message-editor-send-button'),
|
|
|
|
|
).not.toBeVisible();
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
2025-04-25 23:40:15 -07:00
|
|
|
|
|
|
|
|
async expectToastToContain(text: string) {
|
|
|
|
|
await expect(this.page.getByTestId('toast')).toContainText(text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async openSideBar() {
|
|
|
|
|
const sidebarToggleButton = this.page.getByTestId('sidebar-toggle-button');
|
|
|
|
|
await sidebarToggleButton.click();
|
|
|
|
|
}
|
2025-03-09 21:02:19 -07:00
|
|
|
}
|