summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/hooks/slashCommandProcessor.test.ts
diff options
context:
space:
mode:
authorAllen Hutchison <[email protected]>2025-06-14 00:00:24 -0700
committerGitHub <[email protected]>2025-06-14 07:00:24 +0000
commit643bdf31d50868e5644a1257afabed612ba317c7 (patch)
tree987d7e3600987c32c21a017d1ee1b3b7f14dae6c /packages/cli/src/ui/hooks/slashCommandProcessor.test.ts
parentd5c6bb9740a52d87b71d812e698d0e88abf10caa (diff)
feat: Add custom URL support for the /bug command (#1017)
Diffstat (limited to 'packages/cli/src/ui/hooks/slashCommandProcessor.test.ts')
-rw-r--r--packages/cli/src/ui/hooks/slashCommandProcessor.test.ts42
1 files changed, 42 insertions, 0 deletions
diff --git a/packages/cli/src/ui/hooks/slashCommandProcessor.test.ts b/packages/cli/src/ui/hooks/slashCommandProcessor.test.ts
index 73669651..3e0a768c 100644
--- a/packages/cli/src/ui/hooks/slashCommandProcessor.test.ts
+++ b/packages/cli/src/ui/hooks/slashCommandProcessor.test.ts
@@ -129,6 +129,7 @@ describe('useSlashCommandProcessor', () => {
getModel: vi.fn(() => 'test-model'),
getProjectRoot: vi.fn(() => '/test/dir'),
getCheckpointEnabled: vi.fn(() => true),
+ getBugCommand: vi.fn(() => undefined),
} as unknown as Config;
mockCorgiMode = vi.fn();
mockUseSessionStats.mockReturnValue({
@@ -418,6 +419,47 @@ Add any other context about the problem here.
expect(open).toHaveBeenCalledWith(expectedUrl);
expect(commandResult).toBe(true);
});
+
+ it('should use the custom bug command URL from config if available', async () => {
+ const bugCommand = {
+ urlTemplate:
+ 'https://custom-bug-tracker.com/new?title={title}&body={body}',
+ };
+ mockConfig = {
+ ...mockConfig,
+ getBugCommand: vi.fn(() => bugCommand),
+ } as unknown as Config;
+
+ const { handleSlashCommand } = getProcessor();
+ const bugDescription = 'This is a custom bug';
+ const diagnosticInfo = `
+## Describe the bug
+A clear and concise description of what the bug is.
+
+## Additional context
+Add any other context about the problem here.
+
+## Diagnostic Information
+* **CLI Version:** unknown
+* **Git Commit:** ${GIT_COMMIT_INFO}
+* **Operating System:** test-platform test-node-version
+* **Sandbox Environment:** no sandbox
+* **Model Version:** test-model
+* **Memory Usage:** 11.8 MB
+`;
+ const expectedUrl = bugCommand.urlTemplate
+ .replace('{title}', encodeURIComponent(bugDescription))
+ .replace('{body}', encodeURIComponent(diagnosticInfo));
+
+ let commandResult: SlashCommandActionReturn | boolean = false;
+ await act(async () => {
+ commandResult = await handleSlashCommand(`/bug ${bugDescription}`);
+ });
+
+ expect(mockAddItem).toHaveBeenCalledTimes(2);
+ expect(open).toHaveBeenCalledWith(expectedUrl);
+ expect(commandResult).toBe(true);
+ });
});
describe('/quit and /exit commands', () => {