176 lines
5.3 KiB
TypeScript
176 lines
5.3 KiB
TypeScript
import {
|
|
createPaymentSessionsWorkflow,
|
|
createPaymentSessionsWorkflowId,
|
|
} from "@medusajs/core-flows"
|
|
import { IPaymentModuleService, IRegionModuleService } from "@medusajs/types"
|
|
import { ModuleRegistrationName } from "@medusajs/utils"
|
|
import { medusaIntegrationTestRunner } from "medusa-test-utils"
|
|
|
|
jest.setTimeout(50000)
|
|
|
|
const env = { MEDUSA_FF_MEDUSA_V2: true }
|
|
|
|
medusaIntegrationTestRunner({
|
|
env,
|
|
testSuite: ({ dbConnection, getContainer, api }) => {
|
|
describe("Carts workflows", () => {
|
|
let appContainer
|
|
let paymentModule: IPaymentModuleService
|
|
let regionModule: IRegionModuleService
|
|
let remoteLink
|
|
|
|
beforeAll(async () => {
|
|
appContainer = getContainer()
|
|
paymentModule = appContainer.resolve(ModuleRegistrationName.PAYMENT)
|
|
regionModule = appContainer.resolve(ModuleRegistrationName.REGION)
|
|
remoteLink = appContainer.resolve("remoteLink")
|
|
})
|
|
|
|
describe("createPaymentSessionWorkflow", () => {
|
|
let region
|
|
let paymentCollection
|
|
|
|
beforeEach(async () => {
|
|
region = await regionModule.createRegions({
|
|
currency_code: "usd",
|
|
name: "US",
|
|
})
|
|
|
|
paymentCollection = await paymentModule.createPaymentCollections({
|
|
currency_code: "usd",
|
|
amount: 1000,
|
|
region_id: region.id,
|
|
})
|
|
})
|
|
|
|
it("should create payment sessions", async () => {
|
|
await createPaymentSessionsWorkflow(appContainer).run({
|
|
input: {
|
|
payment_collection_id: paymentCollection.id,
|
|
provider_id: "pp_system_default",
|
|
context: {},
|
|
data: {},
|
|
},
|
|
})
|
|
|
|
paymentCollection = await paymentModule.retrievePaymentCollection(
|
|
paymentCollection.id,
|
|
{
|
|
relations: ["payment_sessions"],
|
|
}
|
|
)
|
|
|
|
expect(paymentCollection).toEqual(
|
|
expect.objectContaining({
|
|
id: paymentCollection.id,
|
|
currency_code: "usd",
|
|
amount: 1000,
|
|
region_id: region.id,
|
|
payment_sessions: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
amount: 1000,
|
|
currency_code: "usd",
|
|
provider_id: "pp_system_default",
|
|
}),
|
|
]),
|
|
})
|
|
)
|
|
})
|
|
|
|
it("should delete existing sessions when create payment sessions", async () => {
|
|
await createPaymentSessionsWorkflow(appContainer).run({
|
|
input: {
|
|
payment_collection_id: paymentCollection.id,
|
|
provider_id: "pp_system_default",
|
|
context: {},
|
|
data: {},
|
|
},
|
|
})
|
|
|
|
await createPaymentSessionsWorkflow(appContainer).run({
|
|
input: {
|
|
payment_collection_id: paymentCollection.id,
|
|
provider_id: "pp_system_default",
|
|
context: {},
|
|
data: {},
|
|
},
|
|
})
|
|
|
|
paymentCollection = await paymentModule.retrievePaymentCollection(
|
|
paymentCollection.id,
|
|
{ relations: ["payment_sessions"] }
|
|
)
|
|
|
|
expect(paymentCollection).toEqual(
|
|
expect.objectContaining({
|
|
id: paymentCollection.id,
|
|
currency_code: "usd",
|
|
amount: 1000,
|
|
region_id: region.id,
|
|
payment_sessions: [
|
|
expect.objectContaining({
|
|
amount: 1000,
|
|
currency_code: "usd",
|
|
provider_id: "pp_system_default",
|
|
}),
|
|
],
|
|
})
|
|
)
|
|
})
|
|
|
|
describe("compensation", () => {
|
|
it("should delete created payment collection if a subsequent step fails", async () => {
|
|
const workflow = createPaymentSessionsWorkflow(appContainer)
|
|
|
|
workflow.appendAction("throw", createPaymentSessionsWorkflowId, {
|
|
invoke: async function failStep() {
|
|
throw new Error(
|
|
`Failed to do something after creating payment sessions`
|
|
)
|
|
},
|
|
})
|
|
|
|
const region = await regionModule.createRegions({
|
|
currency_code: "usd",
|
|
name: "US",
|
|
})
|
|
|
|
let paymentCollection =
|
|
await paymentModule.createPaymentCollections({
|
|
currency_code: "usd",
|
|
amount: 1000,
|
|
region_id: region.id,
|
|
})
|
|
|
|
const { errors } = await workflow.run({
|
|
input: {
|
|
payment_collection_id: paymentCollection.id,
|
|
provider_id: "pp_system_default",
|
|
context: {},
|
|
data: {},
|
|
},
|
|
throwOnError: false,
|
|
})
|
|
|
|
expect(errors).toEqual([
|
|
{
|
|
action: "throw",
|
|
handlerType: "invoke",
|
|
error: expect.objectContaining({
|
|
message: `Failed to do something after creating payment sessions`,
|
|
}),
|
|
},
|
|
])
|
|
|
|
const sessions = await paymentModule.listPaymentSessions({
|
|
payment_collection_id: paymentCollection.id,
|
|
})
|
|
|
|
expect(sessions).toHaveLength(0)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
},
|
|
})
|