saleor-dashboard/cypress/e2e/catalog/giftCards/activateGiftCards.js
Karolina Rakoczy 056b3501eb
Update Cypress Version (#2080)
* Update Cypress Version

* sparete specs with coma

* change workflows to use latest cypress verion
2022-06-08 12:33:11 +04:00

233 lines
7.9 KiB
JavaScript

/// <reference types="cypress" />
import faker from "faker";
import { GIFT_CARD_LIST } from "../../../elements/catalog/giftCard/giftCardList";
import { completeCheckout } from "../../../support/api/requests/Checkout";
import {
createGiftCard,
giftCardDeactivate
} from "../../../support/api/requests/GiftCard";
import {
createCheckoutWithDisabledGiftCard,
deleteGiftCardsWithTagStartsWith,
isGiftCardDataAsExpected,
purchaseProductWithActiveGiftCard
} from "../../../support/api/utils/catalog/giftCardUtils";
import * as channelsUtils from "../../../support/api/utils/channelsUtils";
import {
addPayment,
purchaseProductWithPromoCode
} from "../../../support/api/utils/ordersUtils";
import * as productsUtils from "../../../support/api/utils/products/productsUtils";
import { deleteShippingStartsWith } from "../../../support/api/utils/shippingUtils";
import filterTests from "../../../support/filterTests";
import {
changeGiftCardActiveStatus,
enterAndSelectGiftCards
} from "../../../support/pages/catalog/giftCardPage";
filterTests({ definedTags: ["all"], version: "3.1.0" }, () => {
describe("As a admin I want to use enabled gift card in checkout", () => {
const startsWith = "GiftCardsCheckout";
const productPrice = 50;
const shippingPrice = 50;
const email = "example@example.com";
const giftCardData = {
amount: 150,
currency: "USD"
};
let defaultChannel;
let address;
let dataForCheckout;
before(() => {
const name = `${startsWith}${faker.datatype.number()}`;
cy.clearSessionData().loginUserViaRequest();
channelsUtils.deleteChannelsStartsWith(startsWith);
productsUtils.deleteProductsStartsWith(startsWith);
deleteShippingStartsWith(startsWith);
deleteGiftCardsWithTagStartsWith(startsWith);
productsUtils
.createProductWithShipping({ name, shippingPrice, productPrice })
.then(resp => {
defaultChannel = resp.defaultChannel;
address = resp.address;
dataForCheckout = {
address,
email,
auth: "token",
channelSlug: defaultChannel.slug,
shippingMethodName: resp.shippingMethod.name,
variantsList: resp.variantsList
};
});
});
beforeEach(() => {
cy.clearSessionData().loginUserViaRequest();
});
it("should be able to enable gift card and use it in checkout. TC: SALEOR_1006", () => {
const expectedGiftCardBalance =
giftCardData.amount - productPrice - shippingPrice;
giftCardData.tag = `${startsWith}${faker.datatype.number()}`;
let giftCard;
createGiftCard(giftCardData)
.then(giftCardResp => {
giftCard = giftCardResp;
giftCardDeactivate(giftCard.id);
})
.then(() => {
changeGiftCardActiveStatus(giftCard.id);
dataForCheckout.voucherCode = giftCard.code;
purchaseProductWithPromoCode(dataForCheckout);
})
.then(({ order }) => {
expect(order.total.gross.amount).to.eq(0);
expect(order.userEmail).to.eq(email);
isGiftCardDataAsExpected({
giftCardId: giftCard.id,
expectedAmount: expectedGiftCardBalance,
userEmail: email,
initialBalance: giftCardData.amount
});
})
.then(dataAsExpected => {
expect(dataAsExpected).to.be.true;
});
});
it("should not be able to disable gift card and use it in checkout. TC: SALEOR_1007", () => {
giftCardData.tag = `${startsWith}${faker.datatype.number()}`;
let giftCard;
createGiftCard(giftCardData)
.then(giftCardResp => {
giftCard = giftCardResp;
changeGiftCardActiveStatus(giftCard.id);
dataForCheckout.voucherCode = giftCard.code;
createCheckoutWithDisabledGiftCard(dataForCheckout);
})
.then(checkout => {
addPayment(checkout.id);
completeCheckout(checkout.id);
})
.then(() => {
isGiftCardDataAsExpected({
giftCardId: giftCard.id,
expectedAmount: giftCardData.amount
});
})
.then(dataAsExpected => {
expect(dataAsExpected).to.be.true;
});
});
it("should not be able to disable several gift cards on gift card list page and use it in checkout. TC: SALEOR_1013", () => {
const firstGiftCardName = `${startsWith}${faker.datatype.number()}`;
const secondGiftCardName = `${startsWith}${faker.datatype.number()}`;
const amount = 10;
let firstGiftCard;
let secondGiftCard;
createGiftCard({
tag: firstGiftCardName,
amount,
currency: "USD"
})
.then(giftCard => {
firstGiftCard = giftCard;
createGiftCard({
tag: secondGiftCardName,
amount,
currency: "USD"
});
})
.then(giftCard => {
secondGiftCard = giftCard;
enterAndSelectGiftCards([firstGiftCard.id, secondGiftCard.id]);
cy.addAliasToGraphRequest("GiftCardBulkDeactivate")
.get(GIFT_CARD_LIST.deactivateGiftCardButton)
.click()
.waitForRequestAndCheckIfNoErrors("@GiftCardBulkDeactivate")
.confirmationMessageShouldAppear();
dataForCheckout.voucherCode = firstGiftCard.code;
createCheckoutWithDisabledGiftCard(dataForCheckout);
dataForCheckout.voucherCode = secondGiftCard.code;
createCheckoutWithDisabledGiftCard(dataForCheckout);
})
.then(checkout => {
addPayment(checkout.id);
completeCheckout(checkout.id);
})
.then(() => {
isGiftCardDataAsExpected({
giftCardId: firstGiftCard.id,
expectedAmount: amount
}).then(dataAsExpected => expect(dataAsExpected).to.be.true);
isGiftCardDataAsExpected({
giftCardId: secondGiftCard.id,
expectedAmount: amount
}).then(dataAsExpected => expect(dataAsExpected).to.be.true);
});
});
xit("should be able to enable several gift cards on gift card list page and use it in checkout. TC: SALEOR_1012", () => {
const firstGiftCardName = `${startsWith}${faker.datatype.number()}`;
const secondGiftCardName = `${startsWith}${faker.datatype.number()}`;
const amount = 10;
const expectedOrderPrice = shippingPrice + productPrice - amount;
let firstGiftCard;
let secondGiftCard;
createGiftCard({
tag: firstGiftCardName,
amount,
currency: "USD",
isActive: false
})
.then(giftCard => {
firstGiftCard = giftCard;
createGiftCard({
tag: secondGiftCardName,
amount,
currency: "USD",
isActive: false
});
})
.then(giftCard => {
secondGiftCard = giftCard;
enterAndSelectGiftCards([firstGiftCard.id, secondGiftCard.id]);
cy.addAliasToGraphRequest("GiftCardBulkActivate")
.get(GIFT_CARD_LIST.activateGiftCardButton)
.click()
.waitForRequestAndCheckIfNoErrors("@GiftCardBulkActivate")
.confirmationMessageShouldAppear();
dataForCheckout.voucherCode = firstGiftCard.code;
purchaseProductWithActiveGiftCard({
giftCard: firstGiftCard,
expectedAmount: 0,
initialAmount: amount,
dataForCheckout,
expectedOrderPrice
}).then(isDataAsExpected => expect(isDataAsExpected).to.be.true);
dataForCheckout.voucherCode = secondGiftCard.code;
purchaseProductWithActiveGiftCard({
giftCard: secondGiftCard,
expectedAmount: 0,
initialAmount: amount,
dataForCheckout,
expectedOrderPrice
}).then(isDataAsExpected => expect(isDataAsExpected).to.be.true);
});
});
});
});