2021-09-23 22:03:11 +02:00
|
|
|
import { Selector } from "testcafe";
|
|
|
|
import testcafeconfig from "./testcafeconfig";
|
|
|
|
import Page from "./page-model";
|
|
|
|
|
2021-09-24 10:59:26 +02:00
|
|
|
fixture`Test people`.page`${testcafeconfig.url}`;
|
2021-09-23 22:03:11 +02:00
|
|
|
|
|
|
|
const page = new Page();
|
|
|
|
|
|
|
|
test.meta("testID", "authentication-000")(
|
|
|
|
"Time to start instance (will be marked as unstable)",
|
|
|
|
async (t) => {
|
|
|
|
await t.wait(5000);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
test.meta("testID", "people-001")("Faces tab preselected when subjects empty", async (t) => {
|
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
2021-10-06 18:22:12 +02:00
|
|
|
.expect(Selector("#tab-people_faces > a").hasClass("v-tabs__item--active"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.ok()
|
2021-10-06 18:22:12 +02:00
|
|
|
.expect(Selector("#tab-people > a").hasClass("v-tabs__item--active"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.notOk()
|
2021-10-06 18:22:12 +02:00
|
|
|
.click(Selector("#tab-people > a"))
|
|
|
|
.expect(Selector("#tab-people_faces > a").hasClass("v-tabs__item--active"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.notOk()
|
2021-10-06 18:22:12 +02:00
|
|
|
.expect(Selector("#tab-people > a").hasClass("v-tabs__item--active"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.ok();
|
|
|
|
const countSubjects = await Selector("a.is-subject").count;
|
|
|
|
await t.expect(countSubjects).eql(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
test.meta("testID", "people-002")("Add + Rename", async (t) => {
|
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
2021-10-06 18:22:12 +02:00
|
|
|
.click(Selector("#tab-people_faces > a"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.click(Selector("form.p-faces-search button.action-reload"));
|
|
|
|
const countFaces = await Selector("div.is-face", { timeout: 55000 }).count;
|
2021-10-06 18:22:12 +02:00
|
|
|
await t.click(Selector("#tab-people > a"));
|
2021-09-23 22:03:11 +02:00
|
|
|
const countSubjects = await Selector("a.is-subject").count;
|
2021-10-06 18:22:12 +02:00
|
|
|
await t.click(Selector("#tab-people_faces > a"));
|
2021-09-23 22:03:11 +02:00
|
|
|
const FirstFaceID = await Selector("div.is-face").nth(0).getAttribute("data-id");
|
|
|
|
await t.click(Selector("div[data-id=" + FirstFaceID + "] div.clickable"));
|
|
|
|
const countPhotosFace = await Selector("div.is-photo").count;
|
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
2021-10-06 18:22:12 +02:00
|
|
|
.click(Selector("#tab-people_faces > a"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.typeText(Selector("div[data-id=" + FirstFaceID + "] div.input-name input"), "Jane Doe")
|
|
|
|
.pressKey("enter")
|
|
|
|
.click(Selector("form.p-faces-search button"));
|
|
|
|
const countFacesAfterAdd = await Selector("div.is-face", { timeout: 55000 }).count;
|
|
|
|
await t
|
|
|
|
.expect(countFacesAfterAdd)
|
|
|
|
.eql(countFaces - 1)
|
|
|
|
.expect(Selector("div").withAttribute("data-id", FirstFaceID).exists)
|
|
|
|
.notOk()
|
2021-10-06 18:22:12 +02:00
|
|
|
.click(Selector("#tab-people > a"));
|
2021-09-23 22:03:11 +02:00
|
|
|
const countSubjectsAfterAdd = await Selector("a.is-subject").count;
|
|
|
|
await t
|
|
|
|
.expect(countSubjectsAfterAdd)
|
|
|
|
.eql(countSubjects + 1)
|
|
|
|
.typeText(Selector("div.input-search input"), "Jane")
|
|
|
|
.pressKey("enter");
|
|
|
|
const JaneUID = await Selector("a.is-subject", { timeout: 55000 })
|
|
|
|
.nth(0)
|
|
|
|
.getAttribute("data-uid");
|
|
|
|
await t
|
|
|
|
.expect(Selector("a[data-uid=" + JaneUID + "] div.caption").innerText)
|
|
|
|
.contains(countPhotosFace.toString())
|
|
|
|
.click(Selector("a.is-subject").withAttribute("data-uid", JaneUID));
|
|
|
|
const countPhotosSubject = await Selector("div.is-photo").count;
|
|
|
|
await t.expect(countPhotosFace).eql(countPhotosSubject);
|
|
|
|
await page.toggleSelectNthPhoto(0);
|
|
|
|
await page.toggleSelectNthPhoto(1);
|
|
|
|
await page.toggleSelectNthPhoto(2);
|
|
|
|
await page.editSelected();
|
|
|
|
await t
|
|
|
|
.click(Selector("#tab-people"))
|
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.contains("Jane Doe")
|
2021-10-05 09:40:16 +02:00
|
|
|
.click("button.action-close");
|
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
|
|
|
.click(Selector("a[data-uid=" + JaneUID + "] div.v-card__title"))
|
|
|
|
.typeText(Selector("div.input-rename input"), "Max Mu", { replace: true })
|
2021-09-23 22:03:11 +02:00
|
|
|
.pressKey("enter")
|
2021-10-05 09:40:16 +02:00
|
|
|
.expect(Selector("a[data-uid=" + JaneUID + "] div.v-card__title").innerText)
|
|
|
|
.contains("Max Mu")
|
|
|
|
.click(Selector("a.is-subject").withAttribute("data-uid", JaneUID));
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await page.editSelected();
|
|
|
|
await t
|
|
|
|
.click(Selector("#tab-people"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.contains("Max Mu")
|
|
|
|
.click("button.action-next")
|
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.contains("Max Mu")
|
|
|
|
.click("button.action-next")
|
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.contains("Max Mu")
|
|
|
|
.click("button.action-close");
|
|
|
|
await page.clearSelection();
|
|
|
|
await t
|
|
|
|
.typeText(Selector("div.input-search input").nth(0), "person:max-mu", {
|
|
|
|
replace: true,
|
|
|
|
})
|
|
|
|
.pressKey("enter");
|
|
|
|
const countPhotosSubjectAfterRename = await Selector("div.is-photo").count;
|
|
|
|
await t.expect(countPhotosSubjectAfterRename).eql(countPhotosSubject);
|
|
|
|
});
|
|
|
|
|
|
|
|
test.meta("testID", "people-003")("Add + Reject + Star", async (t) => {
|
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
2021-10-06 18:22:12 +02:00
|
|
|
.click(Selector("#tab-people_faces > a"))
|
2021-09-23 22:03:11 +02:00
|
|
|
.click(Selector("form.p-faces-search button.action-reload"));
|
|
|
|
const FirstFaceID = await Selector("div.is-face").nth(0).getAttribute("data-id");
|
|
|
|
await t
|
|
|
|
.expect(Selector("div.menuable__content__active").nth(0).visible)
|
|
|
|
.notOk()
|
|
|
|
.click(Selector("div[data-id=" + FirstFaceID + "] div.input-name input"))
|
|
|
|
.expect(Selector("div.menuable__content__active").nth(0).visible)
|
|
|
|
.ok()
|
|
|
|
.typeText(Selector("div[data-id=" + FirstFaceID + "] div.input-name input"), "Andrea Doe")
|
|
|
|
.pressKey("enter")
|
2021-10-06 18:22:12 +02:00
|
|
|
.click(Selector("#tab-people > a"));
|
2021-09-23 22:03:11 +02:00
|
|
|
await t.typeText(Selector("div.input-search input"), "Andrea").pressKey("enter");
|
|
|
|
const AndreaUID = await Selector("a.is-subject").nth(0).getAttribute("data-uid");
|
2021-10-05 09:40:16 +02:00
|
|
|
await t.click(Selector("a.is-subject").withAttribute("data-uid", AndreaUID));
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t.wait(6000);
|
2021-09-23 22:03:11 +02:00
|
|
|
const countPhotosAndreaAfterAdd = await Selector("div.is-photo").count;
|
|
|
|
await page.toggleSelectNthPhoto(1);
|
|
|
|
await page.editSelected();
|
|
|
|
await t
|
|
|
|
.click(Selector("#tab-people"))
|
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.eql("Andrea Doe")
|
|
|
|
.click(Selector("div.input-name div.v-input__icon--clear"))
|
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.eql("")
|
|
|
|
.typeText(Selector("div.input-name input").nth(0), "Nicole", { replace: true })
|
|
|
|
.pressKey("enter")
|
|
|
|
.click("button.action-close");
|
|
|
|
await page.clearSelection();
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t.wait(6000);
|
|
|
|
const countPhotosAndreaAfterReject = await Selector("div.is-photo").count;
|
|
|
|
const Diff = countPhotosAndreaAfterAdd - countPhotosAndreaAfterReject;
|
|
|
|
await t
|
2021-10-05 09:40:16 +02:00
|
|
|
.typeText(Selector("div.input-search input"), "person:nicole", { replace: true })
|
2021-09-23 22:03:11 +02:00
|
|
|
.pressKey("enter");
|
2021-10-05 09:40:16 +02:00
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t.wait(6000);
|
2021-09-23 22:03:11 +02:00
|
|
|
const countPhotosNicole = await Selector("div.is-photo").count;
|
2021-10-06 18:22:12 +02:00
|
|
|
await t.expect(Diff).gte(countPhotosNicole);
|
2021-09-23 22:03:11 +02:00
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
|
|
|
.typeText(Selector("div.input-search input"), "Nicole", { replace: true })
|
|
|
|
.pressKey("enter");
|
|
|
|
const NicoleUID = await Selector("a.is-subject").nth(0).getAttribute("data-uid");
|
|
|
|
await t
|
|
|
|
.click(Selector("a[data-uid=" + NicoleUID + "] button.input-favorite"))
|
|
|
|
.typeText(Selector("div.input-search input"), " ", { replace: true })
|
|
|
|
.pressKey("enter")
|
|
|
|
.expect(Selector("a.is-subject").nth(0).getAttribute("data-uid"))
|
|
|
|
.eql(NicoleUID);
|
|
|
|
});
|
2021-09-24 17:17:24 +02:00
|
|
|
|
|
|
|
test.meta("testID", "people-004")("Remove face", async (t) => {
|
|
|
|
await page.openNav();
|
|
|
|
await t.click(Selector(".nav-browse"));
|
|
|
|
await page.search("face:new");
|
|
|
|
const FirstPhoto = await Selector("div.is-photo").nth(0).getAttribute("data-uid");
|
|
|
|
await page.toggleSelectNthPhoto(0);
|
|
|
|
await page.editSelected();
|
|
|
|
await t.click(Selector("#tab-people"));
|
|
|
|
const MarkerCount = await Selector("div.is-marker").count;
|
|
|
|
if ((await Selector("div.input-name input").nth(0).value) == "") {
|
|
|
|
await t
|
|
|
|
.expect(Selector("button.action-undo").nth(0).visible)
|
|
|
|
.notOk()
|
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.eql("")
|
|
|
|
.click(Selector("button.input-reject"))
|
|
|
|
.expect(Selector("button.action-undo").nth(0).visible)
|
|
|
|
.ok()
|
|
|
|
.click(Selector("button.action-undo"));
|
|
|
|
} else if ((await Selector("div.input-name input").nth(0).value) != "") {
|
|
|
|
await t
|
|
|
|
.expect(Selector("div.input-name input").nth(1).value)
|
|
|
|
.eql("")
|
|
|
|
.click(Selector("button.input-reject"))
|
|
|
|
.expect(Selector("button.action-undo").nth(0).visible)
|
|
|
|
.ok()
|
|
|
|
.click(Selector("button.action-undo"));
|
|
|
|
}
|
|
|
|
await t.click("button.action-close");
|
|
|
|
await page.clearSelection();
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t.wait(6000);
|
|
|
|
await page.selectPhotoFromUID(FirstPhoto);
|
|
|
|
await page.editSelected();
|
|
|
|
await t.click(Selector("#tab-people"));
|
|
|
|
if ((await Selector("div.input-name input").nth(0).value) == "") {
|
|
|
|
await t
|
|
|
|
.expect(Selector("button.action-undo").nth(0).visible)
|
|
|
|
.notOk()
|
|
|
|
.expect(Selector("div.input-name input").nth(0).value)
|
|
|
|
.eql("")
|
|
|
|
.click(Selector("button.input-reject"))
|
|
|
|
.expect(Selector("button.action-undo").nth(0).visible)
|
|
|
|
.ok();
|
|
|
|
} else if ((await Selector("div.input-name input").nth(0).value) != "") {
|
|
|
|
await t
|
|
|
|
.expect(Selector("button.action-undo").nth(0).visible)
|
|
|
|
.notOk()
|
|
|
|
.expect(Selector("div.input-name input").nth(1).value)
|
|
|
|
.eql("")
|
|
|
|
.click(Selector("button.input-reject"))
|
|
|
|
.expect(Selector("button.action-undo").nth(0).visible)
|
|
|
|
.ok();
|
|
|
|
}
|
|
|
|
await t.click("button.action-close");
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await page.editSelected();
|
|
|
|
await t.click(Selector("#tab-people"));
|
|
|
|
const MarkerCountAfterRemove = await Selector("div.is-marker").count;
|
|
|
|
await t.expect(MarkerCountAfterRemove).eql(MarkerCount - 1);
|
|
|
|
});
|
|
|
|
|
|
|
|
test.meta("testID", "people-005")("Hide face", async (t) => {
|
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
2021-10-06 18:22:12 +02:00
|
|
|
.click(Selector("#tab-people_faces > a"))
|
2021-09-24 17:17:24 +02:00
|
|
|
.click(Selector("form.p-faces-search button.action-reload"));
|
|
|
|
const FirstFaceID = await Selector("div.is-face").nth(0).getAttribute("data-id");
|
2021-10-06 18:22:12 +02:00
|
|
|
await t
|
|
|
|
.hover(Selector("div[data-id=" + FirstFaceID + "]"))
|
|
|
|
.click(Selector("div[data-id=" + FirstFaceID + "] button.input-hidden"));
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t
|
|
|
|
.wait(6000)
|
|
|
|
.expect(Selector("div[data-id=" + FirstFaceID + "]").visible)
|
|
|
|
.notOk()
|
|
|
|
.click(Selector("button.action-show-all"));
|
2021-09-24 17:17:24 +02:00
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t
|
|
|
|
.wait(6000)
|
|
|
|
.expect(Selector("div[data-id=" + FirstFaceID + "]").visible)
|
2021-10-06 18:22:12 +02:00
|
|
|
.ok()
|
|
|
|
.hover(Selector("div[data-id=" + FirstFaceID + "]"))
|
|
|
|
.click(Selector("div[data-id=" + FirstFaceID + "] button.input-hidden"))
|
|
|
|
.click(Selector("button.action-show-default"));
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t
|
|
|
|
.wait(6000)
|
|
|
|
.expect(Selector("div[data-id=" + FirstFaceID + "]").visible)
|
|
|
|
.ok();
|
|
|
|
});
|
|
|
|
|
|
|
|
test.meta("testID", "people-006")("Hide person", async (t) => {
|
|
|
|
await page.openNav();
|
|
|
|
await t
|
|
|
|
.click(Selector(".nav-people"))
|
|
|
|
.click(Selector("#tab-people > a"));
|
|
|
|
const FirstPerson = await Selector("a.is-subject").nth(0).getAttribute("data-uid");
|
|
|
|
await t
|
|
|
|
.hover(Selector("a[data-uid=" + FirstPerson + "]"))
|
|
|
|
.click(Selector("a[data-uid=" + FirstPerson + "] button.input-hidden"));
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t
|
|
|
|
.wait(6000)
|
|
|
|
.expect(Selector("a[data-uid=" + FirstPerson + "]").visible)
|
|
|
|
.notOk()
|
|
|
|
.click(Selector("button.action-show-all"));
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t
|
|
|
|
.wait(6000)
|
|
|
|
.expect(Selector("a[data-uid=" + FirstPerson + "]").visible)
|
|
|
|
.ok()
|
|
|
|
.hover(Selector("a[data-uid=" + FirstPerson + "]"))
|
|
|
|
.click(Selector("a[data-uid=" + FirstPerson + "] button.input-hidden"))
|
|
|
|
.click(Selector("button.action-show-default"));
|
|
|
|
await t.eval(() => location.reload());
|
|
|
|
await t
|
|
|
|
.wait(6000)
|
|
|
|
.expect(Selector("a[data-uid=" + FirstPerson + "]").visible)
|
|
|
|
.ok();
|
2021-09-24 17:17:24 +02:00
|
|
|
});
|