saleor-dashboard/cypress/support/api/utils/ordersUtils.js
Karolina Rakoczy 2407ae6f76
gift cards in checkout (#1376)
* gift cards in checkout

* complete checkout after trying to add gift card

* fix gift cards tests

* fix gift cards

* update snapshots

* fix tests

* fix gift cards in checkout

* delete created channels
2021-09-29 15:24:47 +02:00

228 lines
5 KiB
JavaScript

import * as checkoutRequest from "../requests/Checkout";
import * as orderRequest from "../requests/Order";
import { createProductInChannel } from "./products/productsUtils";
export function createWaitingForCaptureOrder({
channelSlug,
email,
variantsList,
shippingMethodId,
address
}) {
let checkout;
const auth = "token";
cy.loginInShop();
return checkoutRequest
.createCheckout({
channelSlug,
email,
variantsList,
address,
billingAddress: address,
auth
})
.then(({ checkout: checkoutResp }) => {
checkout = checkoutResp;
checkoutRequest.addShippingMethod(checkout.id, shippingMethodId);
})
.then(() => addPayment(checkout.id))
.then(() => checkoutRequest.completeCheckout(checkout.id))
.then(({ order }) => ({ checkout, order }));
}
export function createCheckoutWithVoucher({
channelSlug,
email = "email@example.com",
variantsList,
address,
shippingMethodId,
voucherCode,
auth
}) {
let checkout;
return checkoutRequest
.createCheckout({
channelSlug,
email,
variantsList,
address,
billingAddress: address,
auth
})
.then(({ checkout: checkoutResp }) => {
checkout = checkoutResp;
checkoutRequest.addShippingMethod(checkout.id, shippingMethodId);
})
.then(() => {
checkoutRequest.addVoucher(checkout.id, voucherCode);
})
.then(resp => ({
addPromoCodeResp: resp.body.data.checkoutAddPromoCode,
checkout
}));
}
export function purchaseProductWithPromoCode({
channelSlug,
email = "email@example.com",
variantsList,
address,
shippingMethodId,
voucherCode,
auth
}) {
let checkout;
return createCheckoutWithVoucher({
channelSlug,
email,
variantsList,
address,
shippingMethodId,
voucherCode,
auth
})
.then(({ checkout: checkoutResp }) => {
checkout = checkoutResp;
addPayment(checkout.id);
})
.then(() => checkoutRequest.completeCheckout(checkout.id))
.then(({ order }) => ({ checkout, order }));
}
export function createReadyToFulfillOrder({
customerId,
shippingMethodId,
channelId,
variantsList,
address
}) {
let order;
return orderRequest
.createDraftOrder({ customerId, shippingMethodId, channelId, address })
.then(orderResp => {
order = orderResp;
assignVariantsToOrder(order, variantsList);
})
.then(() => orderRequest.markOrderAsPaid(order.id))
.then(() => orderRequest.completeOrder(order.id));
}
export function createFulfilledOrder({
customerId,
shippingMethodId,
channelId,
variantsList,
address,
warehouse,
quantity = 1
}) {
return createReadyToFulfillOrder({
customerId,
shippingMethodId,
channelId,
variantsList,
address
}).then(({ order }) => {
orderRequest.fulfillOrder({
orderId: order.id,
warehouse,
quantity,
linesId: order.lines
});
});
}
export function createOrder({
customerId,
shippingMethodId,
channelId,
variantsList,
address
}) {
let order;
return orderRequest
.createDraftOrder({ customerId, shippingMethodId, channelId, address })
.then(orderResp => {
order = orderResp;
assignVariantsToOrder(order, variantsList);
})
.then(() => orderRequest.completeOrder(order.id))
.then(() => order);
}
function assignVariantsToOrder(order, variantsList) {
variantsList.forEach(variantElement => {
orderRequest.addProductToOrder(order.id, variantElement.id);
});
}
export function addPayment(checkoutId) {
return checkoutRequest.addPayment({
checkoutId,
gateway: "mirumee.payments.dummy",
token: "not-charged"
});
}
export function addAdyenPayment(checkoutId, amount) {
return checkoutRequest.addPayment({
checkoutId,
gateway: "mirumee.payments.adyen",
amount
});
}
export function createAndCompleteCheckoutWithoutShipping({
channelSlug,
email,
variantsList,
billingAddress,
auth
}) {
let checkout;
return checkoutRequest
.createCheckout({ channelSlug, email, variantsList, billingAddress, auth })
.then(({ checkout: checkoutResp }) => {
checkout = checkoutResp;
addPayment(checkout.id);
})
.then(() => checkoutRequest.completeCheckout(checkout.id))
.then(({ order }) => ({ checkout, order }));
}
export function createOrderWithNewProduct({
attributeId,
categoryId,
productTypeId,
channel,
name,
warehouseId,
quantityInWarehouse = 1,
trackInventory = true,
shippingMethodId,
address
}) {
let variantsList;
return createProductInChannel({
attributeId,
categoryId,
productTypeId,
channelId: channel.id,
name,
warehouseId,
quantityInWarehouse,
trackInventory
})
.then(({ variantsList: variantsListResp }) => {
variantsList = variantsListResp;
createWaitingForCaptureOrder({
channelSlug: channel.slug,
email: "email@example.com",
variantsList,
shippingMethodId,
address
});
})
.then(({ order, checkout }) => ({ order, checkout, variantsList }));
}