Skip to content

Commit 75e8912

Browse files
committed
fix(products): fix of delete in relationships
1 parent bd9b679 commit 75e8912

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

src/__test__/cart.test.ts

+20
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ describe("CART API TEST", () => {
238238
expect(body.status).toStrictEqual("SUCCESS");
239239
expect(body.message).toStrictEqual("added to cart successfully");
240240
});
241+
241242
it("should return 201 and added to cart successfully again", async () => {
242243
const { body } = await Jest_request.post(`/api/v1/carts/`)
243244
.set("Authorization", `Bearer ${token}`)
@@ -375,4 +376,23 @@ describe("CART API TEST", () => {
375376
expect(body.status).toStrictEqual("ERROR");
376377
expect(body.message).toStrictEqual("Internal Server Error");
377378
});
379+
380+
it("should return 500 and fail to delete product due to foreign key constraint", async () => {
381+
const mockError = new Error();
382+
mockError.name = "SequelizeForeignKeyConstraintError";
383+
jest
384+
.spyOn(database_models.Product, "destroy")
385+
.mockImplementationOnce(() => {
386+
throw mockError;
387+
});
388+
389+
const { body } = await Jest_request.delete(`/api/v1/products/${product_id}`)
390+
.set("Authorization", `Bearer ${seller_token}`)
391+
.expect(400);
392+
393+
expect(body.status).toStrictEqual("CASCADE DELETE REQUIRED");
394+
expect(body.message).toStrictEqual(
395+
"Cannot delete the product because it is linked to other records.",
396+
);
397+
});
378398
});

src/controllers/productController.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,15 @@ const delete_product = async (req: Request, res: Response) => {
437437
"The product you're trying to delete is not found or owned!",
438438
);
439439
}
440-
} catch (error: unknown) {
440+
} catch (error: any) {
441+
if (error.name === "SequelizeForeignKeyConstraintError") {
442+
return sendResponse(
443+
res,
444+
400,
445+
"CASCADE DELETE REQUIRED",
446+
"Cannot delete the product because it is linked to other records.",
447+
);
448+
}
441449
return sendResponse(
442450
res,
443451
500,

src/database/seeders/20240428145740-demo-user.js

+28
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,34 @@ module.exports = {
9999
createdAt: new Date(),
100100
updatedAt: new Date(),
101101
},
102+
{
103+
id: "7ca39bd8-ab6c-42a7-a136-62357cbede3a",
104+
firstName: "Aphrodis",
105+
lastName: "Uwineza",
106+
userName: "Aphro10",
107+
108+
password: await hashPassword("Morning12$"),
109+
confirmPassword: await hashPassword("Morning12$"),
110+
role: "12afd4f1-0bed-4a3b-8ad5-0978dabf8fcd",
111+
isVerified: true,
112+
isActive: true,
113+
createdAt: new Date(),
114+
updatedAt: new Date(),
115+
},
116+
{
117+
id: "6d21d946-7265-45a1-6ce3-3da1789e657e",
118+
firstName: "Garrix",
119+
lastName: "Sven",
120+
userName: "aphro",
121+
122+
password: await hashPassword("Morning12$"),
123+
confirmPassword: await hashPassword("Morning12$"),
124+
role: "13afd4f1-0bed-4a3b-8ad5-0978dabf8fcd",
125+
isVerified: true,
126+
isActive: true,
127+
createdAt: new Date(),
128+
updatedAt: new Date(),
129+
},
102130
],
103131
{},
104132
);

0 commit comments

Comments
 (0)