|
|
|
@@ -2,6 +2,7 @@ import {strict as assert} from "node:assert";
|
|
|
|
|
import {describe, it, before, after} from "mocha";
|
|
|
|
|
import puppeteer from "puppeteer-core";
|
|
|
|
|
import {exit} from "node:process";
|
|
|
|
|
import {setReviewForm, checkCorrectness} from "./appTestHelpers.js"
|
|
|
|
|
|
|
|
|
|
describe("test App end to end", async () => {
|
|
|
|
|
|
|
|
|
@@ -17,6 +18,7 @@ describe("test App end to end", async () => {
|
|
|
|
|
root = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//browser = await puppeteer.launch({headless: false, slowMo: 250, args: root ? ['--no-sandbox'] : undefined});
|
|
|
|
|
browser = await puppeteer.launch({args: root ? ['--no-sandbox'] : undefined});
|
|
|
|
|
page = await browser.newPage();
|
|
|
|
|
try{
|
|
|
|
@@ -35,70 +37,44 @@ describe("test App end to end", async () => {
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe("test CRUD on simple inputs and default image", () => {
|
|
|
|
|
|
|
|
|
|
describe("test create 1 new review", async () => {
|
|
|
|
|
it("create 1 new review", async () => {
|
|
|
|
|
// Click the button to show update form
|
|
|
|
|
// Click the button to create a new review
|
|
|
|
|
let create_btn = await page.$("#create-btn");
|
|
|
|
|
await create_btn.click();
|
|
|
|
|
await page.waitForNavigation();
|
|
|
|
|
|
|
|
|
|
// Set text fields
|
|
|
|
|
await page.$eval("#mealImg", el => el.value = "sample src");
|
|
|
|
|
await page.$eval("#imgAlt", el => el.value = "sample alt");
|
|
|
|
|
await page.$eval("#mealName", el => el.value = "sample name");
|
|
|
|
|
await page.$eval("#comments", el => el.value = "sample comment");
|
|
|
|
|
await page.$eval("#restaurant", el => el.value = "sample restaurant");
|
|
|
|
|
|
|
|
|
|
// Get the button needed to add new tags
|
|
|
|
|
let tag_btn = await page.$("#tag-add-btn");
|
|
|
|
|
for(let i = 0; i < 5; i++){
|
|
|
|
|
await page.$eval("#tag-form", (el, value) => el.value = `tag ${value}`, i);
|
|
|
|
|
await tag_btn.click();
|
|
|
|
|
// create a new review
|
|
|
|
|
let review = {
|
|
|
|
|
imgAlt: "sample alt",
|
|
|
|
|
mealName: "sample name",
|
|
|
|
|
comments: "sample comment",
|
|
|
|
|
restaurant: "sample restaurant",
|
|
|
|
|
tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"],
|
|
|
|
|
rating: 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Select a new rating of 1 star
|
|
|
|
|
let rating_select = await page.$("#s1");
|
|
|
|
|
rating_select.click();
|
|
|
|
|
await setReviewForm(page, review);
|
|
|
|
|
|
|
|
|
|
// Click the save button to save updates
|
|
|
|
|
let save_btn = await page.$("#save-btn");
|
|
|
|
|
save_btn.click();
|
|
|
|
|
await save_btn.click();
|
|
|
|
|
await page.waitForNavigation();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("check details page", async () => {
|
|
|
|
|
// Get the review image and check src and alt
|
|
|
|
|
let img = await page.$("#d-mealImg");
|
|
|
|
|
let imgSrc = await img.getProperty("src");
|
|
|
|
|
let imgAlt = await img.getProperty("alt");
|
|
|
|
|
// Check src and alt
|
|
|
|
|
assert.strictEqual(await imgSrc.jsonValue(), "sample src");
|
|
|
|
|
assert.strictEqual(await imgAlt.jsonValue(), "sample alt");
|
|
|
|
|
|
|
|
|
|
// Get the title, comment, and restaurant
|
|
|
|
|
let title = await page.$("#d-mealName");
|
|
|
|
|
let title_text = await title.getProperty("innerText");
|
|
|
|
|
let comment = await page.$("#d-comments");
|
|
|
|
|
let comment_text = await comment.getProperty("innerText");
|
|
|
|
|
let restaurant = await page.$("#d-restaurant");
|
|
|
|
|
let restaurant_text = await restaurant.getProperty("innerText");
|
|
|
|
|
|
|
|
|
|
// Check title, comment, and restaurant
|
|
|
|
|
assert.strictEqual(await title_text.jsonValue(), "sample name");
|
|
|
|
|
assert.strictEqual(await comment_text.jsonValue(), "sample comment");
|
|
|
|
|
assert.strictEqual(await restaurant_text.jsonValue(), "sample restaurant");
|
|
|
|
|
|
|
|
|
|
// Check tags
|
|
|
|
|
let tags = page.$(".tag");
|
|
|
|
|
for(let i = 0; i < tags.length; i++){
|
|
|
|
|
let tag_text = await tags[i].getProperty("innerText");
|
|
|
|
|
assert.strictEqual(await tag_text.jsonValue(), `tag -${i}`);
|
|
|
|
|
// check the details page for correctness
|
|
|
|
|
let expected = {
|
|
|
|
|
imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png",
|
|
|
|
|
imgAlt: "sample alt",
|
|
|
|
|
mealName: "sample name",
|
|
|
|
|
comments: "sample comment",
|
|
|
|
|
restaurant: "sample restaurant",
|
|
|
|
|
tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"],
|
|
|
|
|
rating: "http://localhost:8080/assets/images/icons/1-star.svg"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check stars
|
|
|
|
|
let stars = await page.$("#d-rating");
|
|
|
|
|
let stars_src = await stars.getProperty("src");
|
|
|
|
|
assert.strictEqual(await stars_src.jsonValue(), "./assets/images/icons/5-star.svg");
|
|
|
|
|
await checkCorrectness(page, "d", expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("check home page", async () => {
|
|
|
|
@@ -111,37 +87,16 @@ describe("test App end to end", async () => {
|
|
|
|
|
let review_card = await page.$("review-card");
|
|
|
|
|
let shadowRoot = await review_card.getProperty("shadowRoot");
|
|
|
|
|
|
|
|
|
|
// Get the review image and check src and alt
|
|
|
|
|
let img = await shadowRoot.$("#a-mealImg");
|
|
|
|
|
let imgSrc = await img.getProperty("src");
|
|
|
|
|
let imgAlt = await img.getProperty("alt");
|
|
|
|
|
// Check src and alt
|
|
|
|
|
assert.strictEqual(await imgSrc.jsonValue(), "sample src");
|
|
|
|
|
assert.strictEqual(await imgAlt.jsonValue(), "sample alt");
|
|
|
|
|
|
|
|
|
|
// Get the title, comment, and restaurant
|
|
|
|
|
let title = await shadowRoot.$("#a-mealName");
|
|
|
|
|
let title_text = await title.getProperty("innerText");
|
|
|
|
|
let comment = await shadowRoot.$("#a-comments");
|
|
|
|
|
let comment_text = await comment.getProperty("innerText");
|
|
|
|
|
let restaurant = await shadowRoot.$("#a-restaurant");
|
|
|
|
|
let restaurant_text = await restaurant.getProperty("innerText");
|
|
|
|
|
// Check title, comment, and restaurant
|
|
|
|
|
assert.strictEqual(await title_text.jsonValue(), "sample name");
|
|
|
|
|
assert.strictEqual(await comment_text.jsonValue(), "sample comment");
|
|
|
|
|
assert.strictEqual(await restaurant_text.jsonValue(), "sample restaurant");
|
|
|
|
|
|
|
|
|
|
// Check tags
|
|
|
|
|
let tags = shadowRoot.$(".tag");
|
|
|
|
|
for(let i = 0; i < tags.length; i++){
|
|
|
|
|
let tag_text = await tags[i].getProperty("innerText");
|
|
|
|
|
assert.strictEqual(await tag_text.jsonValue(), `tag -${i}`);
|
|
|
|
|
let expected = {
|
|
|
|
|
imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png",
|
|
|
|
|
imgAlt: "sample alt",
|
|
|
|
|
mealName: "sample name",
|
|
|
|
|
comments: "sample comment",
|
|
|
|
|
restaurant: "sample restaurant",
|
|
|
|
|
tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"],
|
|
|
|
|
rating: "http://localhost:8080/assets/images/icons/1-star.svg"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check stars
|
|
|
|
|
let stars = await shadowRoot.$("#a-rating");
|
|
|
|
|
let stars_src = await stars.getProperty("src");
|
|
|
|
|
assert.strictEqual(await stars_src.jsonValue(), "./assets/images/icons/5-star.svg");
|
|
|
|
|
await checkCorrectness(shadowRoot, "a", expected);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
@@ -154,42 +109,20 @@ describe("test App end to end", async () => {
|
|
|
|
|
it("check details page", async () => {
|
|
|
|
|
// click review card
|
|
|
|
|
let review_card = await page.$("review-card");
|
|
|
|
|
console.log(JSON.stringify(review_card));
|
|
|
|
|
await review_card.click();
|
|
|
|
|
await page.waitForNavigation();
|
|
|
|
|
|
|
|
|
|
// Get the review image and check src and alt
|
|
|
|
|
let img = await page.$("#d-mealImg");
|
|
|
|
|
let imgSrc = await img.getProperty("src");
|
|
|
|
|
let imgAlt = await img.getProperty("alt");
|
|
|
|
|
// Check src and alt
|
|
|
|
|
assert.strictEqual(await imgSrc.jsonValue(), "sample src");
|
|
|
|
|
assert.strictEqual(await imgAlt.jsonValue(), "sample alt");
|
|
|
|
|
|
|
|
|
|
// Get the title, comment, and restaurant
|
|
|
|
|
let title = await page.$("#d-mealName");
|
|
|
|
|
let title_text = await title.getProperty("innerText");
|
|
|
|
|
let comment = await page.$("#d-comments");
|
|
|
|
|
let comment_text = await comment.getProperty("innerText");
|
|
|
|
|
let restaurant = await page.$("#d-restaurant");
|
|
|
|
|
let restaurant_text = await restaurant.getProperty("innerText");
|
|
|
|
|
|
|
|
|
|
// Check title, comment, and restaurant
|
|
|
|
|
assert.strictEqual(await title_text.jsonValue(), "sample name");
|
|
|
|
|
assert.strictEqual(await comment_text.jsonValue(), "sample comment");
|
|
|
|
|
assert.strictEqual(await restaurant_text.jsonValue(), "sample restaurant");
|
|
|
|
|
|
|
|
|
|
// Check tags
|
|
|
|
|
let tags = page.$(".tag");
|
|
|
|
|
for(let i = 0; i < tags.length; i++){
|
|
|
|
|
let tag_text = await tags[i].getProperty("innerText");
|
|
|
|
|
assert.strictEqual(await tag_text.jsonValue(), `tag -${i}`);
|
|
|
|
|
// check the details page for correctness
|
|
|
|
|
let expected = {
|
|
|
|
|
imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png",
|
|
|
|
|
imgAlt: "sample alt",
|
|
|
|
|
mealName: "sample name",
|
|
|
|
|
comments: "sample comment",
|
|
|
|
|
restaurant: "sample restaurant",
|
|
|
|
|
tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"],
|
|
|
|
|
rating: "http://localhost:8080/assets/images/icons/1-star.svg"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check stars
|
|
|
|
|
let stars = await page.$("#d-rating");
|
|
|
|
|
let stars_src = await stars.getProperty("src");
|
|
|
|
|
assert.strictEqual(await stars_src.jsonValue(), "./assets/images/icons/5-star.svg");
|
|
|
|
|
await checkCorrectness(page, "d", expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("check home page", async () => {
|
|
|
|
@@ -202,37 +135,17 @@ describe("test App end to end", async () => {
|
|
|
|
|
let review_card = await page.$("review-card");
|
|
|
|
|
let shadowRoot = await review_card.getProperty("shadowRoot");
|
|
|
|
|
|
|
|
|
|
// Get the review image and check src and alt
|
|
|
|
|
let img = await shadowRoot.$("#a-mealImg");
|
|
|
|
|
let imgSrc = await img.getProperty("src");
|
|
|
|
|
let imgAlt = await img.getProperty("alt");
|
|
|
|
|
// Check src and alt
|
|
|
|
|
assert.strictEqual(await imgSrc.jsonValue(), "sample src");
|
|
|
|
|
assert.strictEqual(await imgAlt.jsonValue(), "sample alt");
|
|
|
|
|
|
|
|
|
|
// Get the title, comment, and restaurant
|
|
|
|
|
let title = await shadowRoot.$("#a-mealName");
|
|
|
|
|
let title_text = await title.getProperty("innerText");
|
|
|
|
|
let comment = await shadowRoot.$("#a-comments");
|
|
|
|
|
let comment_text = await comment.getProperty("innerText");
|
|
|
|
|
let restaurant = await shadowRoot.$("#a-restaurant");
|
|
|
|
|
let restaurant_text = await restaurant.getProperty("innerText");
|
|
|
|
|
// Check title, comment, and restaurant
|
|
|
|
|
assert.strictEqual(await title_text.jsonValue(), "sample name");
|
|
|
|
|
assert.strictEqual(await comment_text.jsonValue(), "sample comment");
|
|
|
|
|
assert.strictEqual(await restaurant_text.jsonValue(), "sample restaurant");
|
|
|
|
|
|
|
|
|
|
// Check tags
|
|
|
|
|
let tags = shadowRoot.$(".tag");
|
|
|
|
|
for(let i = 0; i < tags.length; i++){
|
|
|
|
|
let tag_text = await tags[i].getProperty("innerText");
|
|
|
|
|
assert.strictEqual(await tag_text.jsonValue(), `tag -${i}`);
|
|
|
|
|
// check the details page for correctness
|
|
|
|
|
let expected = {
|
|
|
|
|
imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png",
|
|
|
|
|
imgAlt: "sample alt",
|
|
|
|
|
mealName: "sample name",
|
|
|
|
|
comments: "sample comment",
|
|
|
|
|
restaurant: "sample restaurant",
|
|
|
|
|
tags: ["tag 0", "tag 1", "tag 2", "tag 3", "tag 4"],
|
|
|
|
|
rating: "http://localhost:8080/assets/images/icons/1-star.svg"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check stars
|
|
|
|
|
let stars = await shadowRoot.$("#a-rating");
|
|
|
|
|
let stars_src = await stars.getProperty("src");
|
|
|
|
|
assert.strictEqual(await stars_src.jsonValue(), "./assets/images/icons/5-star.svg");
|
|
|
|
|
await checkCorrectness(shadowRoot, "a", expected);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
@@ -242,7 +155,6 @@ describe("test App end to end", async () => {
|
|
|
|
|
|
|
|
|
|
// Get the only review card and click it
|
|
|
|
|
let review_card = await page.$("review-card");
|
|
|
|
|
console.log(JSON.stringify(review_card));
|
|
|
|
|
await review_card.click();
|
|
|
|
|
await page.waitForNavigation();
|
|
|
|
|
|
|
|
|
@@ -250,68 +162,35 @@ describe("test App end to end", async () => {
|
|
|
|
|
let update_btn = await page.$("#update-btn");
|
|
|
|
|
await update_btn.click();
|
|
|
|
|
|
|
|
|
|
// Set text fields
|
|
|
|
|
await page.$eval("#mealImg", el => el.value = "updated src");
|
|
|
|
|
await page.$eval("#imgAlt", el => el.value = "updated alt");
|
|
|
|
|
await page.$eval("#mealName", el => el.value = "updated name");
|
|
|
|
|
await page.$eval("#comments", el => el.value = "updated comment");
|
|
|
|
|
await page.$eval("#restaurant", el => el.value = "updated restaurant");
|
|
|
|
|
|
|
|
|
|
// Get all tag elements and click them to delete them
|
|
|
|
|
let tag_items = await page.$$(".tag");
|
|
|
|
|
for(let i = 0; i < tag_items.length; i++){
|
|
|
|
|
await tag_items.click();
|
|
|
|
|
// create a new review
|
|
|
|
|
let review = {
|
|
|
|
|
imgAlt: "updated alt",
|
|
|
|
|
mealName: "updated name",
|
|
|
|
|
comments: "updated comment",
|
|
|
|
|
restaurant: "updated restaurant",
|
|
|
|
|
tags: ["tag -0", "tag -1", "tag -2", "tag -3", "tag -4", "tag -5"],
|
|
|
|
|
rating: 5
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the button needed to add new tags
|
|
|
|
|
let tag_btn = await page.$("#tag-add-btn");
|
|
|
|
|
for(let i = 0; i < 5; i++){
|
|
|
|
|
await page.$eval("#tag-form", (el, value) => el.value = `updated tag -${value}`, i);
|
|
|
|
|
await tag_btn.click();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Select a new rating of 5 stars
|
|
|
|
|
let rating_select = await page.$("#s5");
|
|
|
|
|
rating_select.click();
|
|
|
|
|
await setReviewForm(page, review);
|
|
|
|
|
|
|
|
|
|
// Click the save button to save updates
|
|
|
|
|
let save_btn = await page.$("#save-btn");
|
|
|
|
|
save_btn.click();
|
|
|
|
|
await save_btn.click();
|
|
|
|
|
await page.waitForNavigation();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("check details page", async () => {
|
|
|
|
|
// Get the review image and check src and alt
|
|
|
|
|
let img = await page.$("#d-mealImg");
|
|
|
|
|
let imgSrc = await img.getProperty("src");
|
|
|
|
|
let imgAlt = await img.getProperty("alt");
|
|
|
|
|
// Check src and alt
|
|
|
|
|
assert.strictEqual(await imgSrc.jsonValue(), "updated src");
|
|
|
|
|
assert.strictEqual(await imgAlt.jsonValue(), "updated alt");
|
|
|
|
|
|
|
|
|
|
// Get the title, comment, and restaurant
|
|
|
|
|
let title = await page.$("#d-mealName");
|
|
|
|
|
let title_text = await title.getProperty("innerText");
|
|
|
|
|
let comment = await page.$("#d-comments");
|
|
|
|
|
let comment_text = await comment.getProperty("innerText");
|
|
|
|
|
let restaurant = await page.$("#d-restaurant");
|
|
|
|
|
let restaurant_text = await restaurant.getProperty("innerText");
|
|
|
|
|
// Check title, comment, and restaurant
|
|
|
|
|
assert.strictEqual(await title_text.jsonValue(), "updated name");
|
|
|
|
|
assert.strictEqual(await comment_text.jsonValue(), "updated comment");
|
|
|
|
|
assert.strictEqual(await restaurant_text.jsonValue(), "updated restaurant");
|
|
|
|
|
|
|
|
|
|
// Check tags
|
|
|
|
|
let tags = page.$(".tag");
|
|
|
|
|
for(let i = 0; i < tags.length; i++){
|
|
|
|
|
let tag_text = await tags[i].getProperty("innerText");
|
|
|
|
|
assert.strictEqual(await tag_text.jsonValue(), `updated tag -${i}`);
|
|
|
|
|
// check the details page for correctness
|
|
|
|
|
let expected = {
|
|
|
|
|
imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png",
|
|
|
|
|
imgAlt: "updated alt",
|
|
|
|
|
mealName: "updated name",
|
|
|
|
|
comments: "updated comment",
|
|
|
|
|
restaurant: "updated restaurant",
|
|
|
|
|
tags: ["tag -0", "tag -1", "tag -2", "tag -3", "tag -4", "tag -5"],
|
|
|
|
|
rating: "http://localhost:8080/assets/images/icons/5-star.svg"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check stars
|
|
|
|
|
let stars = await page.$("#d-rating");
|
|
|
|
|
let stars_src = await stars.getProperty("src");
|
|
|
|
|
assert.strictEqual(await stars_src.jsonValue(), "./assets/images/icons/1-star.svg");
|
|
|
|
|
await checkCorrectness(page, "d", expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("check home page", async () => {
|
|
|
|
@@ -324,48 +203,33 @@ describe("test App end to end", async () => {
|
|
|
|
|
let review_card = await page.$("review-card");
|
|
|
|
|
let shadowRoot = await review_card.getProperty("shadowRoot");
|
|
|
|
|
|
|
|
|
|
// Get the review image and check src and alt
|
|
|
|
|
let img = await shadowRoot.$("#a-mealImg");
|
|
|
|
|
let imgSrc = await img.getProperty("src");
|
|
|
|
|
let imgAlt = await img.getProperty("alt");
|
|
|
|
|
// Check src and alt
|
|
|
|
|
assert.strictEqual(await imgSrc.jsonValue(), "updated src");
|
|
|
|
|
assert.strictEqual(await imgAlt.jsonValue(), "updated alt");
|
|
|
|
|
|
|
|
|
|
// Get the title, comment, and restaurant
|
|
|
|
|
let title = await shadowRoot.$("#a-mealName");
|
|
|
|
|
let title_text = await title.getProperty("innerText");
|
|
|
|
|
let comment = await shadowRoot.$("#a-comments");
|
|
|
|
|
let comment_text = await comment.getProperty("innerText");
|
|
|
|
|
let restaurant = await shadowRoot.$("#a-restaurant");
|
|
|
|
|
let restaurant_text = await restaurant.getProperty("innerText");
|
|
|
|
|
// Check title, comment, and restaurant
|
|
|
|
|
assert.strictEqual(await title_text.jsonValue(), "updated name");
|
|
|
|
|
assert.strictEqual(await comment_text.jsonValue(), "updated comment");
|
|
|
|
|
assert.strictEqual(await restaurant_text.jsonValue(), "updated restaurant");
|
|
|
|
|
|
|
|
|
|
// Check tags
|
|
|
|
|
let tags = shadowRoot.$(".tag");
|
|
|
|
|
for(let i = 0; i < tags.length; i++){
|
|
|
|
|
let tag_text = await tags[i].getProperty("innerText");
|
|
|
|
|
assert.strictEqual(await tag_text.jsonValue(), `tag -${i}`);
|
|
|
|
|
// check the details page for correctness
|
|
|
|
|
let expected = {
|
|
|
|
|
imgSrc: "http://localhost:8080/assets/images/icons/plate_with_cutlery.png",
|
|
|
|
|
imgAlt: "updated alt",
|
|
|
|
|
mealName: "updated name",
|
|
|
|
|
comments: "updated comment",
|
|
|
|
|
restaurant: "updated restaurant",
|
|
|
|
|
tags: ["tag -0", "tag -1", "tag -2", "tag -3", "tag -4", "tag -5"],
|
|
|
|
|
rating: "http://localhost:8080/assets/images/icons/5-star.svg"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Check stars
|
|
|
|
|
let stars = await shadowRoot.$("#a-rating");
|
|
|
|
|
let stars_src = await stars.getProperty("src");
|
|
|
|
|
assert.strictEqual(await stars_src.jsonValue(), "./assets/images/icons/1-star.svg");
|
|
|
|
|
await checkCorrectness(shadowRoot, "a", expected);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe("test delete 1 review", () => {
|
|
|
|
|
describe("test delete 1 review", async () => {
|
|
|
|
|
it("delete 1 review", async () => {
|
|
|
|
|
// Get the only review card and click it
|
|
|
|
|
let review_card = await page.$("review-card");
|
|
|
|
|
await review_card.click();
|
|
|
|
|
await page.waitForNavigation();
|
|
|
|
|
|
|
|
|
|
page.on('dialog', async dialog => {
|
|
|
|
|
console.log(dialog.message());
|
|
|
|
|
await dialog.accept();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Get the delete button and click it
|
|
|
|
|
let delete_btn = await page.$("#delete-btn");
|
|
|
|
|
await delete_btn.click();
|
|
|
|
@@ -377,6 +241,8 @@ describe("test App end to end", async () => {
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
after(async () => {
|
|
|
|
|
await page.close();
|
|
|
|
|
await browser.close();
|
|
|
|
|