-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add settings to ignore backticks in AI code completion
fixed #14461
- Loading branch information
1 parent
be43deb
commit b7dd888
Showing
5 changed files
with
101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
packages/ai-code-completion/src/browser/code-completion-agent.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// ***************************************************************************** | ||
// Copyright (C) 2024 EclipseSource GmbH. | ||
// | ||
// This program and the accompanying materials are made available under the | ||
// terms of the Eclipse Public License v. 2.0 which is available at | ||
// http://www.eclipse.org/legal/epl-2.0. | ||
// | ||
// This Source Code may also be made available under the following Secondary | ||
// Licenses when the conditions for such availability set forth in the Eclipse | ||
// Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
// with the GNU Classpath Exception which is available at | ||
// https://www.gnu.org/software/classpath/license.html. | ||
// | ||
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 | ||
// ***************************************************************************** | ||
|
||
import { expect } from 'chai'; | ||
import { CodeCompletionAgentImpl } from './code-completion-agent'; | ||
|
||
describe('CodeCompletionAgentImpl', () => { | ||
class TestableCodeCompletionAgent extends CodeCompletionAgentImpl { | ||
public stripBackticksForTest(text: string): string { | ||
return this.stripBackticks(text); | ||
} | ||
} | ||
const agent = new TestableCodeCompletionAgent(); | ||
|
||
describe('stripBackticks', () => { | ||
|
||
it('should remove surrounding backticks and language (TypeScript)', () => { | ||
const input = '```TypeScript\nconsole.log(\"Hello, World!\");```'; | ||
const output = agent.stripBackticksForTest(input); | ||
expect(output).to.equal('console.log("Hello, World!");'); | ||
}); | ||
|
||
it('should remove surrounding backticks and language (md)', () => { | ||
const input = '```md\nconsole.log(\"Hello, World!\");```'; | ||
const output = agent.stripBackticksForTest(input); | ||
expect(output).to.equal('console.log("Hello, World!");'); | ||
}); | ||
|
||
it('should remove all text after second occurrence of backticks', () => { | ||
const input = '```js\nlet x = 10;\n```\nTrailing text should be removed```'; | ||
const output = agent.stripBackticksForTest(input); | ||
expect(output).to.equal('let x = 10;'); | ||
}); | ||
|
||
it('should return the text unchanged if no surrounding backticks', () => { | ||
const input = 'console.log(\"Hello, World!\");'; | ||
const output = agent.stripBackticksForTest(input); | ||
expect(output).to.equal('console.log("Hello, World!");'); | ||
}); | ||
|
||
it('should remove surrounding backticks without language', () => { | ||
const input = '```\nconsole.log(\"Hello, World!\");```'; | ||
const output = agent.stripBackticksForTest(input); | ||
expect(output).to.equal('console.log("Hello, World!");'); | ||
}); | ||
|
||
it('should handle text starting with backticks but no second delimiter', () => { | ||
const input = '```python\nprint(\"Hello, World!\")'; | ||
const output = agent.stripBackticksForTest(input); | ||
expect(output).to.equal('print("Hello, World!")'); | ||
}); | ||
|
||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters