saleor-dashboard/cypress/e2e/discounts/vouchers/updateVouchers.js
poulch d5ed6fb202
Feature flags (#2961)
* [Feature Flags] Abstraction over flags provider (#2928)

* Remove useFlag hook

* [Feature Flags] GraphQL build multiple schemas (#2937)

* Build script

* Refactor build types script

* Remove old codegen.yml

* Clean feature flags in script

* Refactor schema path

* Restore useAuthProvider

* Update configuration file

* encapsulate details for feature flags provider

* Add proper env to flagsmith provider

* Remove flagsmith mocks

* Vite config define global variables

* Render flagmisth provider only when is used

* Keep name service agnostic

* Test with mocked flagsmith

* Use global FLAGS varaible for env flags

* Fix type issue with FLAGS

* Fix build issue

* Remove duplicate translations

* Fix typo

* Prepare for QA tests

* Remove test feature flag
2023-01-16 14:55:38 +01:00

270 lines
8.7 KiB
JavaScript

/// <reference types="cypress"/>
/// <reference types="../../../support"/>
import faker from "faker";
import { VOUCHERS_SELECTORS } from "../../../elements/discounts/vouchers";
import { BUTTON_SELECTORS } from "../../../elements/shared/button-selectors";
import { voucherDetailsUrl } from "../../../fixtures/urlList";
import {
createVoucherInChannel,
deleteVouchersStartsWith,
} from "../../../support/api/utils/discounts/vouchersUtils";
import { createCheckoutWithVoucher } from "../../../support/api/utils/ordersUtils";
import * as productsUtils from "../../../support/api/utils/products/productsUtils";
import { formatDate, formatTime } from "../../../support/formatData/formatDate";
import { setVoucherDate } from "../../../support/pages/discounts/vouchersPage";
describe("As an admin I want to update vouchers", () => {
const startsWith = "UpdateVou-";
const productPrice = 100;
const shippingPrice = 100;
const voucherValue = 50;
let defaultChannel;
let product;
let dataForCheckout;
before(() => {
const name = `${startsWith}${faker.datatype.number()}`;
cy.clearSessionData().loginUserViaRequest();
deleteVouchersStartsWith(startsWith);
productsUtils
.createProductWithShipping({ name, productPrice, shippingPrice })
.then(
({
variantsList: variantsResp,
defaultChannel: channel,
shippingMethod: shippingMethodResp,
address: addressResp,
product: productResp,
}) => {
defaultChannel = channel;
product = productResp;
dataForCheckout = {
channelSlug: defaultChannel.slug,
variantsList: variantsResp,
address: addressResp,
shippingMethodName: shippingMethodResp.name,
auth: "token",
};
},
cy.checkIfDataAreNotNull({ dataForCheckout, defaultChannel, product }),
);
});
it(
"should delete voucher. TC: SALEOR_1905",
{ tags: ["@vouchers", "@allEnv", "@stable"] },
() => {
const name = `${startsWith}${faker.datatype.number()}`;
cy.clearSessionData().loginUserViaRequest();
createVoucherInChannel({
name,
productId: product.id,
channelId: defaultChannel.id,
value: voucherValue,
}).then(voucherResp => {
expect(voucherResp.voucher.id).to.be.ok;
cy.visit(voucherDetailsUrl(voucherResp.voucher.id))
.addAliasToGraphRequest("VoucherDelete")
.get(BUTTON_SELECTORS.deleteButton)
.click()
.get(BUTTON_SELECTORS.submit)
.click()
.wait("@VoucherDelete");
dataForCheckout.voucherCode = voucherResp.voucher.code;
window.sessionStorage.setItem("token", "");
dataForCheckout.auth = "token";
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.errors.0")
.should("include", { field: "promoCode" })
.and("include", { message: "Promo code is invalid" });
});
},
);
it(
"should update voucher. TC: SALEOR_1906",
{ tags: ["@vouchers", "@allEnv", "@stable"] },
() => {
const name = `${startsWith}${faker.datatype.number()}`;
const voucherUpdatedValue = 20;
const expectedOrderAmount =
productPrice +
shippingPrice -
(productPrice * voucherUpdatedValue) / 100;
cy.clearSessionData().loginUserViaRequest();
createVoucherInChannel({
name,
productId: product.id,
channelId: defaultChannel.id,
value: voucherValue,
}).then(voucherResp => {
expect(voucherResp.voucher.id).to.be.ok;
cy.visit(voucherDetailsUrl(voucherResp.voucher.id))
.addAliasToGraphRequest("VoucherUpdate")
.get(VOUCHERS_SELECTORS.percentageDiscountRadioButton)
.click()
.get(VOUCHERS_SELECTORS.discountValueInputs)
.clearAndType(voucherUpdatedValue)
.get(BUTTON_SELECTORS.confirm)
.click()
.wait("@VoucherUpdate");
dataForCheckout.voucherCode = voucherResp.voucher.code;
window.sessionStorage.setItem("token", "");
dataForCheckout.auth = "token";
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.checkout.totalPrice.gross.amount")
.should("eq", expectedOrderAmount);
});
},
);
it(
"should set date on voucher. TC: SALEOR_1912",
{ tags: ["@vouchers", "@allEnv", "@stable"] },
() => {
const name = `${startsWith}${faker.datatype.number()}`;
const todayDate = formatDate(new Date());
const tomorrowDate = formatDate(
new Date().setDate(new Date().getDate() + 1),
);
cy.clearSessionData().loginUserViaRequest();
createVoucherInChannel({
name,
productId: product.id,
channelId: defaultChannel.id,
value: voucherValue,
}).then(voucherResp => {
expect(voucherResp.voucher.id).to.be.ok;
setVoucherDate({
voucherId: voucherResp.voucher.id,
startDate: tomorrowDate,
});
dataForCheckout.voucherCode = voucherResp.voucher.code;
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.errors.0")
.should("include", { field: "promoCode" })
.and("include", { message: "Promo code is invalid" });
setVoucherDate({
voucherId: voucherResp.voucher.id,
startDate: todayDate,
});
window.sessionStorage.setItem("token", "");
dataForCheckout.auth = "token";
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.errors")
.should("be.be.empty");
});
},
);
it(
"should set end date on voucher. TC: SALEOR_1913",
{ tags: ["@vouchers", "@allEnv", "@stable"] },
() => {
const name = `${startsWith}${faker.datatype.number()}`;
const todayDate = formatDate(new Date());
const tomorrowDate = formatDate(
new Date().setDate(new Date().getDate() + 1),
);
cy.clearSessionData().loginUserViaRequest();
createVoucherInChannel({
name,
productId: product.id,
channelId: defaultChannel.id,
value: voucherValue,
}).then(voucherResp => {
expect(voucherResp.voucher.id).to.be.ok;
setVoucherDate({
voucherId: voucherResp.voucher.id,
endDate: todayDate,
endTime: formatTime(new Date()),
hasEndDate: true,
});
dataForCheckout.voucherCode = voucherResp.voucher.code;
window.sessionStorage.setItem("token", "");
dataForCheckout.auth = "token";
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.errors.0")
.should("include", { field: "promoCode" })
.and("include", { message: "Promo code is invalid" });
setVoucherDate({
voucherId: voucherResp.voucher.id,
endDate: tomorrowDate,
endTime: formatTime(new Date()),
});
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.errors")
.should("be.be.empty");
});
},
);
it(
"should set country on voucher. TC: SALEOR_1914",
{ tags: ["@vouchers", "@allEnv", "@stable"] },
() => {
const name = `${startsWith}${faker.datatype.number()}`;
cy.clearSessionData().loginUserViaRequest();
createVoucherInChannel({
name,
productId: product.id,
channelId: defaultChannel.id,
value: voucherValue,
type: "SHIPPING",
country: "US",
}).then(voucherResp => {
expect(voucherResp.voucher.id).to.be.ok;
dataForCheckout.voucherCode = voucherResp.voucher.code;
window.sessionStorage.setItem("token", "");
dataForCheckout.auth = "token";
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.errors")
.should("be.be.empty");
cy.visit(voucherDetailsUrl(voucherResp.voucher.id))
.get(VOUCHERS_SELECTORS.shippingDiscountRadioButton)
.click()
.get(VOUCHERS_SELECTORS.countriesDropdownIcon)
.click()
.get(BUTTON_SELECTORS.deleteIcon)
.click()
.get(BUTTON_SELECTORS.deleteIcon)
.should("not.exist")
.get(VOUCHERS_SELECTORS.assignCountryButton)
.click()
.assignElements("Poland")
.addAliasToGraphRequest("VoucherUpdate")
.get(BUTTON_SELECTORS.confirm)
.click()
.wait("@VoucherUpdate");
createCheckoutWithVoucher(dataForCheckout)
.its("addPromoCodeResp.errors.0")
.should("include", { field: "promoCode" })
.and("include", {
message: "Voucher is not applicable to this checkout.",
});
});
},
);
});