feat: Add create location fulfillment set flow + API (#6945)

This commit is contained in:
Oli Juhl
2024-04-05 19:27:38 +02:00
committed by GitHub
parent 01487970b2
commit 626aa09497
18 changed files with 291 additions and 10 deletions
@@ -4,8 +4,8 @@ import {
createAdminUser,
} from "../../../../helpers/create-admin-user"
import { ContainerRegistrationKeys } from "@medusajs/utils"
import { IStockLocationServiceNext } from "@medusajs/types"
import { ContainerRegistrationKeys } from "@medusajs/utils"
const { medusaIntegrationTestRunner } = require("medusa-test-utils")
@@ -374,5 +374,59 @@ medusaIntegrationTestRunner({
).toHaveLength(1)
})
})
describe("Location fulfillment sets", () => {
let stockLocationId
beforeEach(async () => {
const createResponse = await api.post(
`/admin/stock-locations`,
{
name: "test location",
},
adminHeaders
)
stockLocationId = createResponse.data.stock_location.id
})
it("should create a fulfillment set for the location", async () => {
const response = await api.post(
`/admin/stock-locations/${stockLocationId}/fulfillment-sets?fields=id,*fulfillment_sets`,
{
name: "Fulfillment Set",
type: "shipping",
},
adminHeaders
)
expect(response.status).toEqual(200)
expect(response.data.stock_location.fulfillment_sets).toEqual([
expect.objectContaining({
id: expect.any(String),
}),
])
})
// This is really just to test the new Zod middleware. We don't need more of these.
it("should throw a validation error on wrong input", async () => {
const errorResponse = await api
.post(
`/admin/stock-locations/${stockLocationId}/fulfillment-sets?fields=id,*fulfillment_sets`,
{
name: "Fulfillment Set",
type: "shipping",
foo: "bar",
},
adminHeaders
)
.catch((e) => e.response)
expect(errorResponse.status).toEqual(400)
expect(errorResponse.data.message).toContain("Invalid request body: ")
})
})
},
})