
* reference type cypress working * refactor * remove screenshots * add reference * add slash marker * run tests based on shop version * fix run tests based on shop version * fix run tests based on shop version * change base url to localhost * fix plugins * fix plugins * fix plugins * fix plugins * fix plugins * fix plugins * fix yml * fix yml * chage file names * fix files names * fix broken imports add checking for errors in grpah responses * fix broken imports add checking for errors in grpah responses * update jest * fix snapshot
148 lines
5 KiB
JavaScript
148 lines
5 KiB
JavaScript
/// <reference types="cypress"/>
|
|
/// <reference types="../../support"/>
|
|
|
|
import faker from "faker";
|
|
|
|
import { PRODUCT_DETAILS } from "../../elements/catalog/products/product-details";
|
|
import { PRODUCTS_LIST } from "../../elements/catalog/products/products-list";
|
|
import { BUTTON_SELECTORS } from "../../elements/shared/button-selectors";
|
|
import { urlList } from "../../fixtures/urlList";
|
|
import { ONE_PERMISSION_USERS } from "../../fixtures/users";
|
|
import { createAttribute } from "../../support/api/requests/Attribute";
|
|
import { createTypeProduct } from "../../support/api/requests/ProductType";
|
|
import {
|
|
expectCorrectProductInformation,
|
|
expectCorrectProductVariantInformation
|
|
} from "../../support/api/utils/products/checkProductInfo";
|
|
import * as productUtils from "../../support/api/utils/products/productsUtils";
|
|
import filterTests from "../../support/filterTests";
|
|
import { metadataForms } from "../../support/pages/catalog/metadataComponent";
|
|
import {
|
|
fillUpPriceList,
|
|
priceInputLists
|
|
} from "../../support/pages/catalog/products/priceListComponent";
|
|
import { fillUpCommonFieldsForAllProductTypes } from "../../support/pages/catalog/products/productDetailsPage";
|
|
import { selectChannelInDetailsPages } from "../../support/pages/channelsPage";
|
|
|
|
filterTests({ definedTags: ["all", "critical"] }, () => {
|
|
describe("Create product", () => {
|
|
const startsWith = "CyCreateProduct-";
|
|
const name = `${startsWith}${faker.datatype.number()}`;
|
|
const generalInfo = {
|
|
name: `${startsWith}${faker.datatype.number()}`,
|
|
description: faker.lorem.sentence(),
|
|
rating: 2
|
|
};
|
|
const seo = {
|
|
title: "testTitle",
|
|
description: generalInfo.description
|
|
};
|
|
const metadata = {
|
|
public: {
|
|
metadataForm: metadataForms.public,
|
|
name: "metadataName",
|
|
value: "metadataValue"
|
|
},
|
|
private: {
|
|
metadataForm: metadataForms.private,
|
|
name: "privateMetadataName",
|
|
value: "privateMetadataValue"
|
|
}
|
|
};
|
|
let attribute;
|
|
|
|
before(() => {
|
|
cy.clearSessionData().loginUserViaRequest();
|
|
productUtils.deleteProductsStartsWith(startsWith);
|
|
createAttribute({ name }).then(attributeResp => {
|
|
attribute = attributeResp;
|
|
});
|
|
});
|
|
beforeEach(() => {
|
|
cy.clearSessionData().loginUserViaRequest();
|
|
});
|
|
|
|
it("should create product with variants", () => {
|
|
const randomName = `${startsWith}${faker.datatype.number()}`;
|
|
seo.slug = randomName;
|
|
const productData = {
|
|
generalInfo,
|
|
seo,
|
|
metadata,
|
|
productOrganization: { productType: randomName },
|
|
attribute
|
|
};
|
|
createTpeAndFillUpProductFields(randomName, true, productData).then(
|
|
productOrgResp => (productData.productOrganization = productOrgResp)
|
|
);
|
|
cy.addAliasToGraphRequest("ProductDetails")
|
|
.get(BUTTON_SELECTORS.confirm)
|
|
.click()
|
|
.confirmationMessageShouldDisappear()
|
|
.waitForRequestAndCheckIfNoErrors("@ProductDetails")
|
|
.get("@ProductDetails")
|
|
.its("response.body")
|
|
.then(resp => {
|
|
const productResp = resp.find(element => element.data.product).data
|
|
.product;
|
|
expectCorrectProductInformation(productResp, productData);
|
|
});
|
|
});
|
|
|
|
it("should create product without variants", () => {
|
|
const prices = { sellingPrice: 6, costPrice: 3 };
|
|
const randomName = `${startsWith}${faker.datatype.number()}`;
|
|
seo.slug = randomName;
|
|
const productData = {
|
|
generalInfo,
|
|
seo,
|
|
metadata,
|
|
productOrganization: { productType: randomName },
|
|
attribute
|
|
};
|
|
createTpeAndFillUpProductFields(randomName, false, productData).then(
|
|
productOrgResp => (productData.productOrganization = productOrgResp)
|
|
);
|
|
selectChannelInDetailsPages();
|
|
fillUpPriceList(prices.sellingPrice);
|
|
fillUpPriceList(prices.costPrice, priceInputLists.costPrice);
|
|
cy.get(PRODUCT_DETAILS.skuInput)
|
|
.type(randomName)
|
|
.addAliasToGraphRequest("ProductDetails")
|
|
.get(BUTTON_SELECTORS.confirm)
|
|
.click()
|
|
.confirmationMessageShouldDisappear()
|
|
.wait("@ProductDetails")
|
|
.get("@ProductDetails")
|
|
.its("response.body")
|
|
.then(resp => {
|
|
const productResp = resp.find(element => element.data.product).data
|
|
.product;
|
|
expectCorrectProductInformation(productResp, productData);
|
|
expectCorrectProductVariantInformation(
|
|
productResp.variants,
|
|
randomName,
|
|
prices
|
|
);
|
|
});
|
|
});
|
|
|
|
function createTpeAndFillUpProductFields(
|
|
randomName,
|
|
hasVariants,
|
|
productData
|
|
) {
|
|
createTypeProduct({
|
|
name: randomName,
|
|
attributeId: attribute.id,
|
|
hasVariants
|
|
});
|
|
cy.clearSessionData()
|
|
.loginUserViaRequest("auth", ONE_PERMISSION_USERS.product)
|
|
.visit(urlList.products)
|
|
.get(PRODUCTS_LIST.createProductBtn)
|
|
.click();
|
|
return fillUpCommonFieldsForAllProductTypes(productData);
|
|
}
|
|
});
|
|
});
|