| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import { Labels, LabelStudio, Sidebar, VideoView } from "@humansignal/frontend-test/helpers/LSF/index";
- import { simpleVideoConfig, simpleVideoData, simpleVideoResult } from "../../data/video_segmentation/regions";
- import { TWO_FRAMES_TIMEOUT } from "../utils/constants";
- // This test suite has exhibited flakiness in CI environments, so we are using retries
- // while we work on improving CI stability for visual comparisons.
- const suiteConfig = {
- retries: {
- runMode: 3, // Retry 3 times in CI (headless mode)
- openMode: 0, // No retries in local development (interactive mode)
- },
- };
- describe("Video segmentation", suiteConfig, () => {
- it("Should be able to draw a simple rectangle", () => {
- LabelStudio.params().config(simpleVideoConfig).data(simpleVideoData).withResult([]).init();
- LabelStudio.waitForObjectsReady();
- Sidebar.hasNoRegions();
- Labels.select("Label 1");
- VideoView.drawRectRelative(0.2, 0.2, 0.6, 0.6);
- Sidebar.hasRegions(1);
- });
- it("Should have changes in canvas", () => {
- LabelStudio.params().config(simpleVideoConfig).data(simpleVideoData).withResult([]).init();
- LabelStudio.waitForObjectsReady();
- // Wait for video and regions to be fully loaded
- cy.wait(TWO_FRAMES_TIMEOUT);
- Sidebar.hasNoRegions();
- // Wait for video to be fully loaded and stable
- VideoView.captureCanvas("canvas");
- Labels.select("Label 2");
- VideoView.drawRectRelative(0.2, 0.2, 0.6, 0.6);
- // Ensure drawing operations are complete before comparison
- cy.wait(1000);
- Sidebar.hasRegions(1);
- VideoView.canvasShouldChange("canvas", 0);
- });
- it("Should be invisible out of the lifespan (rectangle)", () => {
- LabelStudio.params().config(simpleVideoConfig).data(simpleVideoData).withResult(simpleVideoResult).init();
- LabelStudio.waitForObjectsReady();
- // Wait for video and regions to be fully loaded
- VideoView.waitForRegionInKonvaByIndex(0);
- VideoView.waitForStableState();
- Sidebar.hasRegions(1);
- VideoView.captureCanvas("canvas");
- VideoView.clickAtFrame(4);
- VideoView.waitForFrame(4);
- VideoView.waitForRegionNotInKonvaByIndex(0);
- VideoView.waitForStableState();
- VideoView.canvasShouldChange("canvas", 0);
- });
- it("Should be invisible out of the lifespan (transformer)", () => {
- LabelStudio.params().config(simpleVideoConfig).data(simpleVideoData).withResult(simpleVideoResult).init();
- LabelStudio.waitForObjectsReady();
- // Wait for frame change to be fully processed
- VideoView.waitForRegionInKonvaByIndex(0);
- VideoView.waitForStableState();
- Sidebar.hasRegions(1);
- cy.log("Remember an empty canvas state");
- VideoView.clickAtFrame(4);
- VideoView.waitForFrame(4);
- VideoView.waitForRegionNotInKonvaByIndex(0);
- VideoView.waitForStableState();
- VideoView.captureCanvas("canvas");
- VideoView.clickAtFrame(3);
- VideoView.waitForRegionInKonvaByIndex(0);
- VideoView.waitForStableState();
- cy.log("Select region");
- VideoView.clickAtRelative(0.5, 0.5);
- Sidebar.hasSelectedRegions(1);
- VideoView.clickAtFrame(4);
- VideoView.waitForFrame(4); // Wait for frame 4
- Sidebar.hasSelectedRegions(1);
- cy.wait(1000);
- VideoView.canvasShouldNotChange("canvas", 0);
- });
- });
|