* new tests folders organizations * 📝 (nightly_build.yml): update tests_folder path from "tests/scheduled" to "tests/core" to reflect the correct location of the tests folder * renaming test folder * changing e2e to integrations folder * 📝 (frontend/tsconfig.json): update test file paths to reflect changes in folder structure for better organization and clarity * change assets folder * 📝 (frontend): update file paths to remove redundant 'core' directory in test assets * 📝 (Document QA.spec.ts, Vector Store.spec.ts, fileUploadComponent.spec.ts): Update file paths to correctly reference test assets in integration and unit tests. * github suggestions
127 lines
3.5 KiB
TypeScript
127 lines
3.5 KiB
TypeScript
import { expect, test } from "@playwright/test";
|
|
import * as dotenv from "dotenv";
|
|
import path from "path";
|
|
|
|
test("Blog Writer", async ({ page }) => {
|
|
test.skip(
|
|
!process?.env?.OPENAI_API_KEY,
|
|
"OPENAI_API_KEY required to run this test",
|
|
);
|
|
|
|
if (!process.env.CI) {
|
|
dotenv.config({ path: path.resolve(__dirname, "../../.env") });
|
|
}
|
|
|
|
await page.goto("/");
|
|
await page.waitForSelector('[data-testid="mainpage_title"]', {
|
|
timeout: 30000,
|
|
});
|
|
|
|
await page.waitForSelector('[id="new-project-btn"]', {
|
|
timeout: 30000,
|
|
});
|
|
|
|
let modalCount = 0;
|
|
try {
|
|
const modalTitleElement = await page?.getByTestId("modal-title");
|
|
if (modalTitleElement) {
|
|
modalCount = await modalTitleElement.count();
|
|
}
|
|
} catch (error) {
|
|
modalCount = 0;
|
|
}
|
|
|
|
while (modalCount === 0) {
|
|
await page.getByText("New Project", { exact: true }).click();
|
|
await page.waitForTimeout(3000);
|
|
modalCount = await page.getByTestId("modal-title")?.count();
|
|
}
|
|
|
|
await page.getByRole("heading", { name: "Blog Writer" }).click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByTitle("fit view").click();
|
|
await page.getByTitle("zoom out").click();
|
|
await page.getByTitle("zoom out").click();
|
|
await page.getByTitle("zoom out").click();
|
|
|
|
let outdatedComponents = await page.getByTestId("icon-AlertTriangle").count();
|
|
|
|
while (outdatedComponents > 0) {
|
|
await page.getByTestId("icon-AlertTriangle").first().click();
|
|
await page.waitForTimeout(1000);
|
|
outdatedComponents = await page.getByTestId("icon-AlertTriangle").count();
|
|
}
|
|
|
|
await page
|
|
.getByTestId("popover-anchor-input-api_key")
|
|
.fill(process.env.OPENAI_API_KEY ?? "");
|
|
|
|
await page.getByTestId("dropdown_str_model_name").click();
|
|
await page.getByTestId("gpt-4o-1-option").click();
|
|
|
|
await page.waitForTimeout(1000);
|
|
await page
|
|
.getByTestId("inputlist_str_urls_0")
|
|
.nth(0)
|
|
.fill(
|
|
"https://www.natgeokids.com/uk/discover/animals/sea-life/turtle-facts/",
|
|
);
|
|
await page
|
|
.getByTestId("inputlist_str_urls_1")
|
|
.nth(0)
|
|
.fill("https://www.originaldiving.com/blog/top-ten-turtle-facts");
|
|
|
|
await page
|
|
.getByTestId("textarea_str_input_value")
|
|
.fill(
|
|
"Use the references above for style to write a new blog/tutorial about turtles. Suggest non-covered topics.",
|
|
);
|
|
|
|
await page.getByTestId("button_run_chat output").click();
|
|
await page.waitForTimeout(5000);
|
|
|
|
await page.waitForSelector("text=built successfully", { timeout: 30000 });
|
|
|
|
await page.getByText("built successfully").last().click({
|
|
timeout: 30000,
|
|
});
|
|
|
|
await page.getByText("Playground", { exact: true }).click();
|
|
await page
|
|
.getByPlaceholder(
|
|
"No chat input variables found. Click to run your flow.",
|
|
{ exact: true },
|
|
)
|
|
.last()
|
|
.isVisible();
|
|
|
|
await page.waitForTimeout(3000);
|
|
|
|
await page.getByText("turtles").last().isVisible();
|
|
await page.getByText("sea").last().isVisible();
|
|
await page.getByText("survival").last().isVisible();
|
|
|
|
await page.getByText("Instructions").last().click();
|
|
|
|
const value = await page
|
|
.getByPlaceholder("Enter text...")
|
|
.last()
|
|
.inputValue();
|
|
|
|
expect(value).toBe(
|
|
"Use the references above for style to write a new blog/tutorial about turtles. Suggest non-covered topics.",
|
|
);
|
|
|
|
await page.getByTestId("icon-ExternalLink").last().click();
|
|
|
|
const count = await page
|
|
.getByText(
|
|
"Use the references above for style to write a new blog/tutorial about turtles. Suggest non-covered topics.",
|
|
)
|
|
.count();
|
|
|
|
if (count <= 1) {
|
|
expect(false).toBe(true);
|
|
}
|
|
});
|