mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-27 12:13:30 +00:00
* test(e2e): add Bombadil property exploration * fix(e2e): address Bombadil review feedback
202 lines
6.4 KiB
TypeScript
202 lines
6.4 KiB
TypeScript
import { always, eventually, extract, next, now } from '@antithesishq/bombadil';
|
|
import { actions } from '@antithesishq/bombadil/browser';
|
|
import type { Action, Point, State } from '@antithesishq/bombadil/browser';
|
|
import {
|
|
noConsoleErrors,
|
|
noHttpErrorCodes,
|
|
noUncaughtExceptions,
|
|
noUnhandledPromiseRejections,
|
|
} from '@antithesishq/bombadil/browser/defaults/properties';
|
|
|
|
type Target = {
|
|
name: string;
|
|
point: Point;
|
|
};
|
|
|
|
const LOGIN_EMAIL = '__BOMBADIL_E2E_USER_EMAIL__';
|
|
const LOGIN_PASSWORD = '__BOMBADIL_E2E_USER_PASSWORD__';
|
|
const ENTER_KEY_CODE = 13;
|
|
const FORK_PROMPT = 'E2E_REPLY:bombadil-fork-lifecycle';
|
|
|
|
function visiblePoint(state: State, element: Element | null): Point | null {
|
|
if (!element) {
|
|
return null;
|
|
}
|
|
const style = state.window.getComputedStyle(element);
|
|
const rect = element.getBoundingClientRect();
|
|
if (
|
|
style.display === 'none' ||
|
|
style.visibility === 'hidden' ||
|
|
style.pointerEvents === 'none' ||
|
|
rect.width <= 0 ||
|
|
rect.height <= 0
|
|
) {
|
|
return null;
|
|
}
|
|
const point = {
|
|
x: rect.left + rect.width / 2,
|
|
y: rect.top + rect.height / 2,
|
|
};
|
|
if (
|
|
point.x < 0 ||
|
|
point.y < 0 ||
|
|
point.x > state.window.innerWidth ||
|
|
point.y > state.window.innerHeight
|
|
) {
|
|
return null;
|
|
}
|
|
const hitElement = state.document.elementFromPoint(point.x, point.y);
|
|
if (!hitElement || (hitElement !== element && !element.contains(hitElement))) {
|
|
return null;
|
|
}
|
|
return point;
|
|
}
|
|
|
|
function target(
|
|
state: State,
|
|
selector: string,
|
|
name: string,
|
|
text?: string,
|
|
last = false,
|
|
): Target | null {
|
|
const candidates = Array.from(state.document.querySelectorAll(selector)).filter(
|
|
(element) => text == null || element.textContent?.trim() === text,
|
|
);
|
|
const elements = last ? candidates.reverse() : candidates;
|
|
for (const element of elements) {
|
|
if (element.matches(':disabled') || element.getAttribute('aria-disabled') === 'true') {
|
|
continue;
|
|
}
|
|
const point = visiblePoint(state, element);
|
|
if (point) {
|
|
return { name, point };
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
function inputValue(state: State, selector: string): string {
|
|
const element = state.document.querySelector(selector) as
|
|
| HTMLInputElement
|
|
| HTMLTextAreaElement
|
|
| null;
|
|
return element?.value ?? '';
|
|
}
|
|
|
|
function isFocused(state: State, selector: string): boolean {
|
|
return state.document.activeElement?.matches(selector) === true;
|
|
}
|
|
|
|
function clickOrWait(targetValue: Target | null): Action[] {
|
|
return targetValue ? [{ Click: targetValue }] : ['Wait'];
|
|
}
|
|
|
|
function isNamedClick(action: Action | null, name: string): boolean {
|
|
return (
|
|
typeof action === 'object' && action !== null && 'Click' in action && action.Click.name === name
|
|
);
|
|
}
|
|
|
|
const ui = extract((state: State) => ({
|
|
path: state.window.location.pathname,
|
|
lastAction: state.lastAction,
|
|
bodyText: state.document.body.textContent ?? '',
|
|
messageCount: state.document.querySelectorAll('.message-render').length,
|
|
composerValue: inputValue(state, '#prompt-textarea'),
|
|
composerFocused: isFocused(state, '#prompt-textarea'),
|
|
emailValue: inputValue(state, '#email'),
|
|
emailFocused: isFocused(state, '#email'),
|
|
passwordValue: inputValue(state, '#password'),
|
|
passwordFocused: isFocused(state, '#password'),
|
|
isSubmitting: state.document.querySelector('button[aria-label="Stop generating"]') !== null,
|
|
hasComposer: state.document.querySelector('#prompt-textarea') !== null,
|
|
loginEmail: target(state, '#email', 'Login email'),
|
|
loginPassword: target(state, '#password', 'Login password'),
|
|
loginSubmit: target(state, '[data-testid="login-button"]', 'Login'),
|
|
composer: target(state, '#prompt-textarea', 'Message input'),
|
|
forkMenu: target(state, 'button[aria-label="Open Fork Menu"]', 'Open fork menu', undefined, true),
|
|
forkVisible: target(state, 'button', 'Fork visible messages', 'Visible messages only', true),
|
|
}));
|
|
|
|
export { noConsoleErrors, noHttpErrorCodes, noUncaughtExceptions, noUnhandledPromiseRejections };
|
|
|
|
export const forkLifecycleActions = actions((): Action[] => {
|
|
const state = ui.current;
|
|
|
|
if (state.path === '/login') {
|
|
if (!state.emailFocused && state.emailValue === '') {
|
|
return clickOrWait(state.loginEmail);
|
|
}
|
|
if (state.emailFocused && state.emailValue === '') {
|
|
return [{ TypeText: { text: LOGIN_EMAIL, delayMillis: 0 } }];
|
|
}
|
|
if (!state.passwordFocused && state.passwordValue === '') {
|
|
return clickOrWait(state.loginPassword);
|
|
}
|
|
if (state.passwordFocused && state.passwordValue === '') {
|
|
return [{ TypeText: { text: LOGIN_PASSWORD, delayMillis: 0 } }];
|
|
}
|
|
return clickOrWait(state.loginSubmit);
|
|
}
|
|
|
|
if (state.isSubmitting || !state.hasComposer) {
|
|
return ['Wait'];
|
|
}
|
|
|
|
const isPersistedConversation = state.path.startsWith('/c/') && state.path !== '/c/new';
|
|
if (isPersistedConversation && state.messageCount === 0) {
|
|
return ['Wait'];
|
|
}
|
|
|
|
if (state.messageCount === 0) {
|
|
if (state.composerValue === '') {
|
|
if (state.composerFocused) {
|
|
return [{ TypeText: { text: FORK_PROMPT, delayMillis: 0 } }];
|
|
}
|
|
return clickOrWait(state.composer);
|
|
}
|
|
if (!state.composerFocused) {
|
|
return clickOrWait(state.composer);
|
|
}
|
|
return [{ PressKey: { code: ENTER_KEY_CODE } }];
|
|
}
|
|
|
|
if (state.forkVisible) {
|
|
return clickOrWait(state.forkVisible);
|
|
}
|
|
return clickOrWait(state.forkMenu);
|
|
});
|
|
|
|
export const forkSetupEventuallyReachesChoice = eventually(
|
|
() => ui.current.forkVisible !== null,
|
|
).within(45, 'seconds');
|
|
|
|
export const forkChoiceBecomesUnavailableAfterSubmission = always(() => {
|
|
const choiceWasVisible = ui.current.forkVisible !== null;
|
|
return next(
|
|
now(
|
|
() => choiceWasVisible && isNamedClick(ui.current.lastAction, 'Fork visible messages'),
|
|
).implies(now(() => ui.current.forkVisible === null)),
|
|
);
|
|
});
|
|
|
|
export const forkSubmissionEventuallyNavigates = always(() => {
|
|
const originalPath = ui.current.path;
|
|
const choiceWasVisible = ui.current.forkVisible !== null;
|
|
return next(
|
|
now(
|
|
() => choiceWasVisible && isNamedClick(ui.current.lastAction, 'Fork visible messages'),
|
|
).implies(
|
|
eventually(
|
|
() =>
|
|
ui.current.path.startsWith('/c/') &&
|
|
ui.current.path !== '/c/new' &&
|
|
ui.current.path !== originalPath,
|
|
).within(30, 'seconds'),
|
|
),
|
|
);
|
|
});
|
|
|
|
export const forkRateLimitIsNeverReached = always(
|
|
() => !ui.current.bodyText.includes('Too many fork requests. Please try again later'),
|
|
);
|