fc644ecd6e
Reemplaza el scaffold del echobot por la plataforma completa de bots traida desde ~/DataProyects/Github/agents_and_robots tras la operacion Matrix-out: los bots ya no hablan por Matrix sino por el bus unibus (modelo todo-rooms + E2E via shell/transportunibus sobre github.com/enmanuel/unibus/pkg/client). - go.mod: replace de unibus -> ../unibus y de fn-registry -> ../../../.. (paths relativos reajustados a la nueva ubicacion dentro de fn_registry). - app.md: bump a 0.2.0, descripcion + arquitectura + comandos + gotchas reales. - modulo Go conservado como github.com/enmanuel/agents (sin reescribir imports). agents_and_robots queda archivado como museo de la era Matrix.
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { test, expect, handleElementDialogs } from "../fixtures/persistent-context";
|
|
import { assertNoDecryptionErrors } from "../fixtures/matrix-room";
|
|
|
|
test.describe("Login y sesion E2EE", () => {
|
|
test("sesion cargada — rooms visibles en sidebar", async ({ page }) => {
|
|
await page.goto("/");
|
|
await handleElementDialogs(page);
|
|
|
|
// Si llegamos aqui, handleElementDialogs ya verifico rooms sidebar
|
|
const rooms = page.locator('[role="treeitem"], .mx_RoomTile');
|
|
const roomCount = await rooms.count();
|
|
expect(roomCount).toBeGreaterThan(0);
|
|
});
|
|
|
|
test("no hay mensajes Unable to decrypt en rooms recientes", async ({
|
|
page,
|
|
}) => {
|
|
await page.goto("/");
|
|
await handleElementDialogs(page);
|
|
|
|
// Abrir el primer room visible para verificar mensajes
|
|
const firstRoom = page.locator('[role="treeitem"], .mx_RoomTile').first();
|
|
const roomCount = await firstRoom.count();
|
|
|
|
if (roomCount > 0) {
|
|
await firstRoom.click();
|
|
await page.waitForTimeout(3_000);
|
|
await assertNoDecryptionErrors(page);
|
|
}
|
|
});
|
|
|
|
test("helpers de room navegan correctamente", async ({ page }) => {
|
|
await page.goto("/");
|
|
await handleElementDialogs(page);
|
|
|
|
const rooms = page.locator('[role="treeitem"], .mx_RoomTile');
|
|
const roomCount = await rooms.count();
|
|
expect(roomCount).toBeGreaterThan(0);
|
|
});
|
|
});
|