* chore: rename js files to txt * chore: rename ts files to txt * chore: delete environment helpers * chore: convert global setup & teardown to txt * chore: rename helper js/ts files to txt * chore: rename seeder js/ts files to txt * chore: remove typeorm * chore: reintroduce used helpers
447 lines
11 KiB
Plaintext
447 lines
11 KiB
Plaintext
const path = require("path")
|
|
|
|
const startServerWithEnvironment =
|
|
require("../../../environment-helpers/start-server-with-environment").default
|
|
const { useApi } = require("../../../environment-helpers/use-api")
|
|
const { useDb } = require("../../../environment-helpers/use-db")
|
|
const adminSeeder = require("../../../helpers/admin-seeder")
|
|
const {
|
|
getClientAuthenticationCookie,
|
|
} = require("../../../helpers/client-authentication")
|
|
|
|
const {
|
|
simplePaymentCollectionFactory,
|
|
} = require("../../../factories/simple-payment-collection-factory")
|
|
const {
|
|
simpleCustomerFactory,
|
|
} = require("../../../factories/simple-customer-factory")
|
|
|
|
jest.setTimeout(30000)
|
|
|
|
describe("/store/payment-collections", () => {
|
|
let medusaProcess
|
|
let dbConnection
|
|
|
|
let payCol = null
|
|
beforeAll(async () => {
|
|
const cwd = path.resolve(path.join(__dirname, "..", ".."))
|
|
const [process, connection] = await startServerWithEnvironment({
|
|
cwd,
|
|
})
|
|
dbConnection = connection
|
|
medusaProcess = process
|
|
|
|
await simpleCustomerFactory(dbConnection, {
|
|
id: "customer",
|
|
email: "test@medusajs.com",
|
|
})
|
|
})
|
|
|
|
afterAll(async () => {
|
|
const db = useDb()
|
|
await db.shutdown()
|
|
|
|
medusaProcess.kill()
|
|
})
|
|
|
|
describe("GET /store/payment-collections/:id", () => {
|
|
beforeEach(async () => {
|
|
await adminSeeder(dbConnection)
|
|
|
|
payCol = await simplePaymentCollectionFactory(dbConnection, {
|
|
description: "paycol description",
|
|
amount: 10000,
|
|
})
|
|
})
|
|
|
|
afterEach(async () => {
|
|
const db = useDb()
|
|
return await db.teardown()
|
|
})
|
|
|
|
it("gets payment collection", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api.get(`/store/payment-collections/${payCol.id}`)
|
|
|
|
expect(response.data.payment_collection).toEqual(
|
|
expect.objectContaining({
|
|
id: payCol.id,
|
|
type: "order_edit",
|
|
status: "not_paid",
|
|
description: "paycol description",
|
|
amount: 10000,
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
})
|
|
|
|
describe("Manage a Single Payment Session", () => {
|
|
beforeEach(async () => {
|
|
await adminSeeder(dbConnection)
|
|
|
|
payCol = await simplePaymentCollectionFactory(dbConnection, {
|
|
description: "paycol description",
|
|
amount: 10000,
|
|
})
|
|
|
|
await simpleCustomerFactory(dbConnection, {
|
|
id: "customer",
|
|
email: "test@customer.com",
|
|
})
|
|
})
|
|
|
|
afterEach(async () => {
|
|
const db = useDb()
|
|
return await db.teardown()
|
|
})
|
|
|
|
it("Set a payment session", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions`,
|
|
{
|
|
provider_id: "test-pay",
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection).toEqual(
|
|
expect.objectContaining({
|
|
id: payCol.id,
|
|
type: "order_edit",
|
|
amount: 10000,
|
|
payment_sessions: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
amount: 10000,
|
|
status: "pending",
|
|
}),
|
|
]),
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
|
|
it("update a payment session", async () => {
|
|
const api = useApi()
|
|
|
|
let response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions`,
|
|
{
|
|
provider_id: "test-pay",
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection.payment_sessions).toHaveLength(1)
|
|
|
|
const paySessions = response.data.payment_collection.payment_sessions
|
|
response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions`,
|
|
{
|
|
provider_id: "test-pay",
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection.payment_sessions).toHaveLength(1)
|
|
expect(response.data.payment_collection).toEqual(
|
|
expect.objectContaining({
|
|
id: payCol.id,
|
|
type: "order_edit",
|
|
amount: 10000,
|
|
payment_sessions: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
id: paySessions[0].id,
|
|
amount: 10000,
|
|
status: "pending",
|
|
}),
|
|
]),
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
})
|
|
|
|
describe("Manage Multiple Payment Sessions", () => {
|
|
beforeEach(async () => {
|
|
await adminSeeder(dbConnection)
|
|
|
|
payCol = await simplePaymentCollectionFactory(dbConnection, {
|
|
description: "paycol description",
|
|
amount: 10000,
|
|
})
|
|
|
|
await simpleCustomerFactory(dbConnection, {
|
|
id: "customer",
|
|
email: "test@customer.com",
|
|
})
|
|
})
|
|
|
|
afterEach(async () => {
|
|
const db = useDb()
|
|
return await db.teardown()
|
|
})
|
|
|
|
it("Set a payment session", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/batch`,
|
|
{
|
|
sessions: [
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 10000,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
headers: {
|
|
Cookie: await getClientAuthenticationCookie(
|
|
api,
|
|
"test@customer.com"
|
|
),
|
|
},
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection).toEqual(
|
|
expect.objectContaining({
|
|
id: payCol.id,
|
|
type: "order_edit",
|
|
amount: 10000,
|
|
payment_sessions: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
amount: 10000,
|
|
status: "pending",
|
|
}),
|
|
]),
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
|
|
it("Set multiple payment sessions", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/batch`,
|
|
{
|
|
sessions: [
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 2000,
|
|
},
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 5000,
|
|
},
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 3000,
|
|
},
|
|
],
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection.payment_sessions).toHaveLength(3)
|
|
expect(response.data.payment_collection).toEqual(
|
|
expect.objectContaining({
|
|
id: payCol.id,
|
|
type: "order_edit",
|
|
amount: 10000,
|
|
payment_sessions: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
amount: 2000,
|
|
status: "pending",
|
|
}),
|
|
expect.objectContaining({
|
|
amount: 5000,
|
|
status: "pending",
|
|
}),
|
|
expect.objectContaining({
|
|
amount: 3000,
|
|
status: "pending",
|
|
}),
|
|
]),
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
|
|
it("update multiple payment sessions", async () => {
|
|
const api = useApi()
|
|
|
|
let response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/batch`,
|
|
{
|
|
sessions: [
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 2000,
|
|
},
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 5000,
|
|
},
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 3000,
|
|
},
|
|
],
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection.payment_sessions).toHaveLength(3)
|
|
|
|
const multipleSessions = response.data.payment_collection.payment_sessions
|
|
|
|
response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/batch`,
|
|
{
|
|
sessions: [
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 5000,
|
|
session_id: multipleSessions[0].id,
|
|
},
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 5000,
|
|
session_id: multipleSessions[1].id,
|
|
},
|
|
],
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection.payment_sessions).toHaveLength(2)
|
|
expect(response.data.payment_collection).toEqual(
|
|
expect.objectContaining({
|
|
id: payCol.id,
|
|
type: "order_edit",
|
|
amount: 10000,
|
|
payment_sessions: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
amount: 5000,
|
|
status: "pending",
|
|
id: multipleSessions[0].id,
|
|
}),
|
|
expect.objectContaining({
|
|
amount: 5000,
|
|
status: "pending",
|
|
id: multipleSessions[1].id,
|
|
}),
|
|
]),
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
})
|
|
|
|
describe("Authorize Payment Sessions", () => {
|
|
beforeEach(async () => {
|
|
await adminSeeder(dbConnection)
|
|
|
|
payCol = await simplePaymentCollectionFactory(dbConnection, {
|
|
description: "paycol description",
|
|
amount: 10000,
|
|
})
|
|
|
|
await simpleCustomerFactory(dbConnection, {
|
|
id: "customer",
|
|
email: "test@customer.com",
|
|
})
|
|
})
|
|
|
|
afterEach(async () => {
|
|
const db = useDb()
|
|
return await db.teardown()
|
|
})
|
|
|
|
it("Authorizes a payment session", async () => {
|
|
const api = useApi()
|
|
|
|
const payColRes = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/batch`,
|
|
{
|
|
sessions: [
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 10000,
|
|
},
|
|
],
|
|
}
|
|
)
|
|
|
|
const sessionId = payColRes.data.payment_collection.payment_sessions[0].id
|
|
const response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/${sessionId}/authorize`
|
|
)
|
|
|
|
expect(response.data.payment_session).toEqual(
|
|
expect.objectContaining({
|
|
amount: 10000,
|
|
status: "authorized",
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
|
|
it("Authorize multiple payment sessions", async () => {
|
|
const api = useApi()
|
|
|
|
const payColRes = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/batch`,
|
|
{
|
|
sessions: [
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 5000,
|
|
},
|
|
{
|
|
provider_id: "test-pay",
|
|
amount: 5000,
|
|
},
|
|
],
|
|
}
|
|
)
|
|
|
|
const response = await api.post(
|
|
`/store/payment-collections/${payCol.id}/sessions/batch/authorize`,
|
|
{
|
|
session_ids: payColRes.data.payment_collection.payment_sessions.map(
|
|
({ id }) => id
|
|
),
|
|
}
|
|
)
|
|
|
|
expect(response.data.payment_collection).toEqual(
|
|
expect.objectContaining({
|
|
id: payCol.id,
|
|
type: "order_edit",
|
|
amount: 10000,
|
|
payment_sessions: expect.arrayContaining([
|
|
expect.objectContaining({
|
|
amount: 5000,
|
|
status: "authorized",
|
|
}),
|
|
expect.objectContaining({
|
|
amount: 5000,
|
|
status: "authorized",
|
|
}),
|
|
]),
|
|
})
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
})
|
|
})
|