-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
feat: add specs for trigger errors #1151
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -100,6 +100,37 @@ describe("Apps class tests subscribe", () => { | |||||||||||||||||||||||||||||||||||||||||
expect(res.config.title).toBe("GmailNewMessageConfigSchema"); | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
it("should throw an error if trigger not found", async () => { | ||||||||||||||||||||||||||||||||||||||||||
let isErrorThrown = false; | ||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||
await triggers.getTriggerConfig({ | ||||||||||||||||||||||||||||||||||||||||||
triggerId: "INVALID_TRIGGER_ID", | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
100
to
+107
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code Quality: The added test case for error handling is a positive addition, ensuring that the system behaves correctly when an invalid trigger ID is provided. However, the test could be improved by using a more descriptive variable name for 🔧 Suggested Code Diff: it("should throw an error if trigger not found", async () => {
- let isErrorThrown = false;
+ let errorOccurred = false;
try {
await triggers.getTriggerConfig({
triggerId: "INVALID_TRIGGER_ID",
});
} catch (error) {
- isErrorThrown = true;
+ errorOccurred = true;
+ expect(error.message).toBe("Expected error message");
}
- expect(isErrorThrown).toBe(true);
+ expect(errorOccurred).toBe(true);
}); 📝 Committable Code Suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
} catch (e: unknown) { | ||||||||||||||||||||||||||||||||||||||||||
const error = e as ComposioError; | ||||||||||||||||||||||||||||||||||||||||||
expect(error.message).toContain("TriggerNotFoundError"); | ||||||||||||||||||||||||||||||||||||||||||
isErrorThrown = true; | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
expect(isErrorThrown).toBe(true); | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
it("should throw an error if invalid connected account id is provided", async () => { | ||||||||||||||||||||||||||||||||||||||||||
let isErrorThrown = false; | ||||||||||||||||||||||||||||||||||||||||||
try { | ||||||||||||||||||||||||||||||||||||||||||
await triggers.list({ | ||||||||||||||||||||||||||||||||||||||||||
connectedAccountIds: ["xxx"], | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
} catch (e: unknown) { | ||||||||||||||||||||||||||||||||||||||||||
isErrorThrown = true; | ||||||||||||||||||||||||||||||||||||||||||
const error = e as ComposioError; | ||||||||||||||||||||||||||||||||||||||||||
expect(error.message).toContain("BadRequestError"); | ||||||||||||||||||||||||||||||||||||||||||
expect(error.description).toContain( | ||||||||||||||||||||||||||||||||||||||||||
"Invalid connected account ids provi" | ||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The error description appears to be truncated. Consider using the complete error message in the test assertion to ensure we're testing against the full expected error message. This will make the test more robust and easier to debug if it fails. |
||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
expect(isErrorThrown).toBe(true); | ||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
it("should get the payload of a trigger", async () => { | ||||||||||||||||||||||||||||||||||||||||||
const res = await triggers.getTriggerInfo({ | ||||||||||||||||||||||||||||||||||||||||||
triggerId: "GMAIL_NEW_GMAIL_MESSAGE", | ||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider extracting the error testing pattern into a helper function since it's repeated in both test cases. This would reduce code duplication and make the tests more maintainable. Example: