Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: throw an error on invalid CRUD actions #78

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kasnix/structured-objects",
"version": "1.4.1",
"version": "1.4.2",
"repository": {
"type": "git",
"url": "git+https://github.com/luckasnix/structured-objects.git"
Expand Down
7 changes: 2 additions & 5 deletions src/object-graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class ObjectGraph<NodeValue extends Record<string, unknown>> {
}
const nodeKey = this.keyExtractor(nodeValue);
if (this.nodes.get(nodeKey)) {
console.error("A node with the same key already exists in the object graph");
throw new Error("A node with the same key already exists in the object graph");
}
this.nodes.set(nodeKey, nodeValue);
}
Expand All @@ -139,7 +139,7 @@ export class ObjectGraph<NodeValue extends Record<string, unknown>> {
}
const nodeKey = this.keyExtractor(nodeValue);
if (!this.nodes.get(nodeKey)) {
console.error("A node with the provided key does not exist in the object graph");
throw new Error("A node with the provided key does not exist in the object graph");
}
this.nodes.set(nodeKey, nodeValue);
}
Expand All @@ -165,9 +165,6 @@ export class ObjectGraph<NodeValue extends Record<string, unknown>> {
if (typeof nodeKey !== "string") {
throw new TypeError("The parameter 'nodeKey' must be a string");
}
if (!this.nodes.get(nodeKey)) {
console.error("A node with this key does not exist in this object graph");
}
this.nodes.delete(nodeKey);
}

Expand Down
61 changes: 23 additions & 38 deletions tests/object-graph.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,15 @@ describe("subgraph()", () => {
});

describe("add()", () => {
test("logs an error when a node with the same key already exists in the object graph", () => {
const consoleErrorSpy = vi.spyOn(console, "error");
test("throws an error when a node with the same key already exists in the object graph", () => {
const shirtToAdd: Shirt = { sku: "1", color: "purple", size: "large" };
const shirtsGraph = new ObjectGraph<Shirt>(shirtsMock, (shirt) => shirt.sku);

shirtsGraph.add(shirtsMock[0]);

expect(consoleErrorSpy).toHaveBeenCalled();
expect(shirtsGraph.get("1")?.color).toBe("red");
expect(() => {
shirtsGraph.add(shirtToAdd);
}).toThrowError();
expect(shirtsGraph.get("1")?.color).toBe("red");
});

test("adds a node to the object graph", () => {
Expand All @@ -122,33 +124,35 @@ describe("add()", () => {
describe("toAdded()", () => {
test("gets a copy of the original object graph with a received node added", () => {
const consoleErrorSpy = vi.spyOn(console, "error");
const shirtsGraph = new ObjectGraph<Shirt>([], (shirt) => shirt.sku);
const shirtsGraph = new ObjectGraph<Shirt>(shirtsMock, (shirt) => shirt.sku);

const copiedShirtsGraph = shirtsGraph.toAdded(shirtsMock[0]);
const copiedShirtsGraph = shirtsGraph.toAdded(extraShirtsMock[0]);

expect(shirtsGraph.size).toBe(0);
expect(copiedShirtsGraph.size).toBe(1);
expect(shirtsGraph.size).toBe(8);
expect(copiedShirtsGraph.size).toBe(9);

const returnedNodeFromCopy = copiedShirtsGraph.get("1");
const returnedNodeFromCopy = copiedShirtsGraph.get("9");

expect(consoleErrorSpy).not.toHaveBeenCalled();
expect(returnedNodeFromCopy).toBeDefined();

const returnedNodeFromOriginal = shirtsGraph.get("1");
const returnedNodeFromOriginal = shirtsGraph.get("9");

expect(consoleErrorSpy).toHaveBeenCalled();
expect(returnedNodeFromOriginal).toBeUndefined();
});
});

describe("update()", () => {
test("logs an error when there is no node with the same key in the object graph", () => {
const consoleErrorSpy = vi.spyOn(console, "error");
test("throws an error when there is no node with the same key in the object graph", () => {
const shirtToUpdate: Shirt = { sku: "9", color: "orange", size: "small" };
const shirtsGraph = new ObjectGraph<Shirt>(shirtsMock, (shirt) => shirt.sku);

shirtsGraph.update(extraShirtsMock[0]);

expect(consoleErrorSpy).toHaveBeenCalled();
expect(shirtsGraph.size).toBe(8);
expect(() => {
shirtsGraph.update(shirtToUpdate);
}).toThrowError();
expect(shirtsGraph.size).toBe(8);
});

test("updates a node in the object graph", () => {
Expand Down Expand Up @@ -176,33 +180,14 @@ describe("toUpdated()", () => {
});

describe("remove()", () => {
test("logs an error when there is no node with the provided key in the object graph", () => {
const consoleErrorSpy = vi.spyOn(console, "error");
const shirtsGraph = new ObjectGraph<Shirt>(shirtsMock, (shirt) => shirt.sku);

const returnedNode = shirtsGraph.remove("9");

expect(consoleErrorSpy).toHaveBeenCalled();
expect(returnedNode).toBeUndefined();
});

test("removes a node from the object graph", () => {
const consoleErrorSpy = vi.spyOn(console, "error");
const shirtsGraph = new ObjectGraph<Shirt>(shirtsMock, (shirt) => shirt.sku);

const returnedNodeFromFirstAttempt = shirtsGraph.get("1");

expect(consoleErrorSpy).not.toHaveBeenCalled();
expect(returnedNodeFromFirstAttempt).toBeDefined();
expect(shirtsGraph.get("1")).toBeDefined();

shirtsGraph.remove("1");

expect(consoleErrorSpy).not.toHaveBeenCalled();

const returnedNodeFromSecondAttempt = shirtsGraph.get("1");

expect(consoleErrorSpy).toHaveBeenCalled();
expect(returnedNodeFromSecondAttempt).toBeUndefined();
expect(shirtsGraph.get("1")).toBeUndefined();
});
});

Expand All @@ -223,8 +208,8 @@ describe("toRemoved()", () => {

const returnedNodeFromCopy = copiedShirtsGraph.get("1");

expect(consoleErrorSpy).toHaveBeenCalled();
expect(returnedNodeFromCopy).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
});

Expand Down