* adds bulk add/remove products to/from collection. Adds endpoint updateProducts on collections that uses these bulk operations * fix integration tests and test description * undo change to swap * made requested changes * added removeProducts endpoint * made requested changes * fix: set collection_id null * updated collection_id to type string | undefined
349 lines
9.9 KiB
JavaScript
349 lines
9.9 KiB
JavaScript
const path = require("path")
|
|
const setupServer = require("../../../helpers/setup-server")
|
|
const { useApi } = require("../../../helpers/use-api")
|
|
const { initDb, useDb } = require("../../../helpers/use-db")
|
|
|
|
const productSeeder = require("../../helpers/product-seeder")
|
|
const adminSeeder = require("../../helpers/admin-seeder")
|
|
|
|
jest.setTimeout(30000)
|
|
describe("/admin/collections", () => {
|
|
let medusaProcess
|
|
let dbConnection
|
|
|
|
beforeAll(async () => {
|
|
const cwd = path.resolve(path.join(__dirname, "..", ".."))
|
|
dbConnection = await initDb({ cwd })
|
|
medusaProcess = await setupServer({ cwd })
|
|
})
|
|
|
|
afterAll(async () => {
|
|
const db = useDb()
|
|
await db.shutdown()
|
|
medusaProcess.kill()
|
|
})
|
|
|
|
describe("/admin/collections/:id", () => {
|
|
beforeEach(async () => {
|
|
try {
|
|
await adminSeeder(dbConnection)
|
|
await productSeeder(dbConnection)
|
|
} catch (err) {
|
|
console.log(err)
|
|
throw err
|
|
}
|
|
})
|
|
|
|
afterEach(async () => {
|
|
const db = useDb()
|
|
await db.teardown()
|
|
})
|
|
|
|
it("updates a collection", async () => {
|
|
const api = useApi()
|
|
|
|
const creationResponse = await api.post(
|
|
"/admin/collections",
|
|
{
|
|
title: "test",
|
|
},
|
|
{ headers: { Authorization: "Bearer test_token" } }
|
|
)
|
|
|
|
const response = await api.post(
|
|
`/admin/collections/${creationResponse.data.collection.id}`,
|
|
{
|
|
title: "test collection creation",
|
|
handle: "test-handle-creation",
|
|
},
|
|
{ headers: { Authorization: "Bearer test_token" } }
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
expect(response.data).toMatchSnapshot({
|
|
collection: {
|
|
id: expect.stringMatching(/^pcol_*/),
|
|
title: "test collection creation",
|
|
handle: "test-handle-creation",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
},
|
|
})
|
|
})
|
|
|
|
it("deletes a collection", async () => {
|
|
const api = useApi()
|
|
|
|
const creationResponse = await api.post(
|
|
"/admin/collections",
|
|
{
|
|
title: "test",
|
|
},
|
|
{ headers: { Authorization: "Bearer test_token" } }
|
|
)
|
|
|
|
const response = await api.delete(
|
|
`/admin/collections/${creationResponse.data.collection.id}`,
|
|
{ headers: { Authorization: "Bearer test_token" } }
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
expect(response.data).toEqual({
|
|
id: creationResponse.data.collection.id,
|
|
object: "product-collection",
|
|
deleted: true,
|
|
})
|
|
})
|
|
|
|
it("gets collection", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api.get("/admin/collections/test-collection", {
|
|
headers: { Authorization: "Bearer test_token" },
|
|
})
|
|
|
|
expect(response.data).toMatchSnapshot({
|
|
collection: {
|
|
id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
products: [
|
|
{
|
|
collection_id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
{
|
|
collection_id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
],
|
|
},
|
|
})
|
|
})
|
|
})
|
|
|
|
describe("/admin/collections", () => {
|
|
beforeEach(async () => {
|
|
try {
|
|
await adminSeeder(dbConnection)
|
|
await productSeeder(dbConnection)
|
|
} catch (err) {
|
|
console.log(err)
|
|
throw err
|
|
}
|
|
})
|
|
|
|
afterEach(async () => {
|
|
const db = useDb()
|
|
await db.teardown()
|
|
})
|
|
|
|
it("creates a collection", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api.post(
|
|
"/admin/collections",
|
|
{
|
|
title: "test collection creation",
|
|
handle: "test-handle-creation",
|
|
},
|
|
{ headers: { Authorization: "Bearer test_token" } }
|
|
)
|
|
|
|
expect(response.status).toEqual(200)
|
|
expect(response.data).toMatchSnapshot({
|
|
collection: {
|
|
id: expect.stringMatching(/^pcol_*/),
|
|
title: "test collection creation",
|
|
handle: "test-handle-creation",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
},
|
|
})
|
|
})
|
|
|
|
it("lists collections", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api.get("/admin/collections", {
|
|
headers: { Authorization: "Bearer test_token" },
|
|
})
|
|
|
|
expect(response.data).toMatchSnapshot({
|
|
collections: [
|
|
{
|
|
id: "test-collection",
|
|
handle: "test-collection",
|
|
title: "Test collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
products: [
|
|
{
|
|
collection_id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
{
|
|
collection_id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: "test-collection1",
|
|
handle: "test-collection1",
|
|
title: "Test collection 1",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
products: [
|
|
{
|
|
collection_id: "test-collection1",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
{
|
|
collection_id: "test-collection1",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: "test-collection2",
|
|
handle: "test-collection2",
|
|
title: "Test collection 2",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
products: [
|
|
{
|
|
collection_id: "test-collection2",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
],
|
|
},
|
|
],
|
|
count: 3,
|
|
})
|
|
})
|
|
|
|
it("adds products to collection", async () => {
|
|
const api = useApi()
|
|
|
|
// adds product test-product-filterid-1
|
|
const response = await api
|
|
.post(
|
|
"/admin/collections/test-collection/products/batch",
|
|
{
|
|
product_ids: ["test-product_filtering_1"],
|
|
},
|
|
{
|
|
headers: { Authorization: "Bearer test_token" },
|
|
}
|
|
)
|
|
.catch((err) => console.warn(err))
|
|
|
|
expect(response.data).toMatchSnapshot({
|
|
collection: {
|
|
id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
products: [
|
|
{
|
|
collection_id: "test-collection",
|
|
id: "test-product",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
{
|
|
collection_id: "test-collection",
|
|
id: "test-product1",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
{
|
|
collection_id: "test-collection",
|
|
id: "test-product_filtering_1",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
],
|
|
},
|
|
})
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
|
|
it("removes products from collection", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api
|
|
.delete("/admin/collections/test-collection/products/batch", {
|
|
headers: { Authorization: "Bearer test_token" },
|
|
data: { product_ids: ["test-product"] },
|
|
})
|
|
.catch((err) => console.warn(err))
|
|
|
|
expect(response.data).toMatchSnapshot({
|
|
id: "test-collection",
|
|
object: "product-collection",
|
|
removed_products: ["test-product"],
|
|
})
|
|
|
|
expect(response.status).toEqual(200)
|
|
})
|
|
|
|
it("filters collections by title", async () => {
|
|
const api = useApi()
|
|
|
|
const response = await api
|
|
.get("/admin/collections?title=Test%20collection", {
|
|
headers: { Authorization: "Bearer test_token" },
|
|
})
|
|
.catch((err) => console.log(err))
|
|
|
|
expect(response.data).toMatchSnapshot({
|
|
collections: [
|
|
{
|
|
id: "test-collection",
|
|
handle: "test-collection",
|
|
title: "Test collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
products: [
|
|
{
|
|
collection_id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
{
|
|
collection_id: "test-collection",
|
|
created_at: expect.any(String),
|
|
updated_at: expect.any(String),
|
|
profile_id: expect.stringMatching(/^sp_*/),
|
|
},
|
|
],
|
|
},
|
|
],
|
|
count: 1,
|
|
limit: 10,
|
|
offset: 0,
|
|
})
|
|
})
|
|
})
|
|
})
|