feat(core-flows,payment,medusa,types): Refund reasons management API (#8436)

* feat(core-flows,payment,medusa,types): add ability to set and manage refund reasons

* fix(payment): validate total amount when refunding payment (#8437)

Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>

* feature: introduce additional_data to the product endpoints (#8405)

* chore(docs): Generated References (#8440)

Generated the following references:
- `product`

* chore: align payment database schema

* Update packages/core/core-flows/src/payment-collection/steps/create-refund-reasons.ts

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>

* chore: address review

---------

Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
Co-authored-by: Harminder Virk <virk.officials@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
This commit is contained in:
Riqwan Thamir
2024-08-06 11:47:42 +02:00
committed by GitHub
parent 8fb079786d
commit 0ff5b975e7
36 changed files with 2412 additions and 9 deletions

View File

@@ -127,14 +127,17 @@ medusaIntegrationTestRunner({
adminHeaders
)
// refund
const refundReason = (
await api.post(`/admin/refund-reasons`, { label: "test" }, adminHeaders)
).data.refund_reason
// BREAKING: reason is now refund_reason_id
const response = await api.post(
`/admin/payments/${payment.id}/refund`,
{
amount: 500,
// BREAKING: We should probably introduce reason and notes in V2 too
// reason: "return",
// note: "Do not like it",
refund_reason_id: refundReason.id,
note: "Do not like it",
},
adminHeaders
)
@@ -155,6 +158,11 @@ medusaIntegrationTestRunner({
expect.objectContaining({
id: expect.any(String),
amount: 500,
note: "Do not like it",
refund_reason_id: refundReason.id,
refund_reason: expect.objectContaining({
label: "test",
}),
}),
],
amount: 1000,

View File

@@ -0,0 +1,155 @@
import { medusaIntegrationTestRunner } from "medusa-test-utils"
import {
adminHeaders,
createAdminUser,
} from "../../../helpers/create-admin-user"
jest.setTimeout(30000)
medusaIntegrationTestRunner({
testSuite: ({ dbConnection, api, getContainer }) => {
let refundReason1
let refundReason2
beforeEach(async () => {
const appContainer = getContainer()
await createAdminUser(dbConnection, adminHeaders, appContainer)
refundReason1 = (
await api.post(
"/admin/refund-reasons",
{ label: "reason 1 - too big" },
adminHeaders
)
).data.refund_reason
refundReason2 = (
await api.post(
"/admin/refund-reasons",
{ label: "reason 2 - too small" },
adminHeaders
)
).data.refund_reason
})
describe("GET /admin/refund-reasons", () => {
it("should list refund reasons and query count", async () => {
const response = await api
.get("/admin/refund-reasons", adminHeaders)
.catch((err) => {
console.log(err)
})
expect(response.status).toEqual(200)
expect(response.data.count).toEqual(2)
expect(response.data.refund_reasons).toEqual([
expect.objectContaining({
label: "reason 1 - too big",
}),
expect.objectContaining({
label: "reason 2 - too small",
}),
])
})
it("should list refund-reasons with specific query", async () => {
const response = await api.get(
"/admin/refund-reasons?q=1",
adminHeaders
)
expect(response.status).toEqual(200)
expect(response.data.count).toEqual(1)
expect(response.data.refund_reasons).toEqual(
expect.arrayContaining([
expect.objectContaining({
label: "reason 1 - too big",
}),
])
)
})
})
describe("POST /admin/refund-reasons", () => {
it("should create a refund reason", async () => {
const response = await api.post(
"/admin/refund-reasons",
{
label: "reason test",
description: "test description",
},
adminHeaders
)
expect(response.status).toEqual(200)
expect(response.data.refund_reason).toEqual(
expect.objectContaining({
label: "reason test",
description: "test description",
})
)
})
})
describe("POST /admin/refund-reasons/:id", () => {
it("should correctly update refund reason", async () => {
const response = await api.post(
`/admin/refund-reasons/${refundReason1.id}`,
{
label: "reason test",
description: "test description",
},
adminHeaders
)
expect(response.status).toEqual(200)
expect(response.data.refund_reason).toEqual(
expect.objectContaining({
label: "reason test",
description: "test description",
})
)
})
})
describe("GET /admin/refund-reasons/:id", () => {
it("should fetch a refund reason", async () => {
const response = await api.get(
`/admin/refund-reasons/${refundReason1.id}`,
adminHeaders
)
expect(response.status).toEqual(200)
expect(response.data.refund_reason).toEqual(
expect.objectContaining({
id: refundReason1.id,
})
)
})
})
describe("DELETE /admin/refund-reasons/:id", () => {
it("should remove refund reasons", async () => {
const deleteResponse = await api.delete(
`/admin/refund-reasons/${refundReason1.id}`,
adminHeaders
)
expect(deleteResponse.data).toEqual({
id: refundReason1.id,
object: "refund_reason",
deleted: true,
})
await api
.get(`/admin/refund-reasons/${refundReason1.id}`, adminHeaders)
.catch((error) => {
expect(error.response.data.type).toEqual("not_found")
expect(error.response.data.message).toEqual(
`Refund reason with id: ${refundReason1.id.id} not found`
)
})
})
})
},
})