@@ -12,6 +12,7 @@ import com.intellij.openapi.application.ApplicationManager
12
12
import com.intellij.openapi.fileEditor.FileDocumentManager
13
13
import com.intellij.openapi.fileEditor.FileEditorManager
14
14
import com.intellij.openapi.project.Project
15
+ import com.intellij.openapi.project.guessProjectDir
15
16
import com.intellij.openapi.vfs.LocalFileSystem
16
17
import com.intellij.openapi.vfs.VirtualFile
17
18
import com.intellij.openapi.vfs.VirtualFileManager
@@ -158,6 +159,10 @@ class CodeTestChatController(
158
159
// check if IDE has active file open, yes return (fileName and filePath) else return null
159
160
val project = context.project
160
161
val fileInfo = checkActiveFileInIDE(project, message) ? : return
162
+ val projectRoot = Path .of(
163
+ project.basePath ? : project.guessProjectDir()?.path
164
+ ? : error(" Cannot guess base directory for project ${project.name} " )
165
+ )
161
166
session.programmingLanguage = fileInfo.fileLanguage
162
167
if (session.isGeneratingTests == = true ) {
163
168
return
@@ -185,7 +190,8 @@ class CodeTestChatController(
185
190
message.tabId,
186
191
false
187
192
)
188
- if (isLanguageSupported(fileInfo.fileLanguage.languageId)) {
193
+ val supported = fileInfo.filePath.startsWith(projectRoot.toString()) && isLanguageSupported(fileInfo.fileLanguage.languageId)
194
+ if (supported) {
189
195
// Send Capability card to chat
190
196
codeTestChatHelper.addNewMessage(
191
197
CodeTestChatMessageContent (informationCard = true , message = null , type = ChatMessageType .Answer , canBeVoted = false ),
@@ -231,9 +237,15 @@ class CodeTestChatController(
231
237
}
232
238
.build()
233
239
234
- val messageContent = " <span style=\" color: #EE9D28;\" >⚠<b> ${fileInfo.fileLanguage.languageId} is not a " +
235
- " language I support specialized unit test generation for at the moment.</b><br></span>The languages " +
236
- " I support now are Python and Java. I can still provide examples, instructions and code suggestions."
240
+ val messageContent = if (fileInfo.filePath.startsWith(projectRoot.toString())) {
241
+ " <span style=\" color: #EE9D28;\" >⚠<b> ${fileInfo.fileLanguage.languageId} is not a " +
242
+ " language I support specialized unit test generation for at the moment.</b><br></span>The languages " +
243
+ " I support now are Python and Java. I can still provide examples, instructions and code suggestions."
244
+ } else {
245
+ " <span style=\" color: #EE9D28;\" >⚠<b> I can't generate tests for ${fileInfo.fileName} " +
246
+ " because it's outside the project directory.</b><br></span> " +
247
+ " I can still provide examples, instructions and code suggestions."
248
+ }
237
249
238
250
codeTestChatHelper.addNewMessage(
239
251
CodeTestChatMessageContent (
@@ -288,7 +300,8 @@ class CodeTestChatController(
288
300
AmazonqTelemetry .utgGenerateTests(
289
301
cwsprChatProgrammingLanguage = session.programmingLanguage.languageId,
290
302
hasUserPromptSupplied = session.hasUserPromptSupplied,
291
- isSupportedLanguage = false ,
303
+ isFileInWorkspace = fileInfo.filePath.startsWith(projectRoot.toString()),
304
+ isSupportedLanguage = isLanguageSupported(fileInfo.fileLanguage.languageId),
292
305
credentialStartUrl = getStartUrl(project),
293
306
result = MetricResult .Succeeded ,
294
307
perfClientLatency = (Instant .now().toEpochMilli() - session.startTimeOfTestGeneration),
@@ -590,6 +603,7 @@ class CodeTestChatController(
590
603
AmazonqTelemetry .utgGenerateTests(
591
604
cwsprChatProgrammingLanguage = session.programmingLanguage.languageId,
592
605
hasUserPromptSupplied = session.hasUserPromptSupplied,
606
+ isFileInWorkspace = true ,
593
607
isSupportedLanguage = true ,
594
608
credentialStartUrl = getStartUrl(project = context.project),
595
609
jobGroup = session.testGenerationJobGroupName,
@@ -785,6 +799,7 @@ class CodeTestChatController(
785
799
AmazonqTelemetry .utgGenerateTests(
786
800
cwsprChatProgrammingLanguage = session.programmingLanguage.languageId,
787
801
hasUserPromptSupplied = session.hasUserPromptSupplied,
802
+ isFileInWorkspace = true ,
788
803
isSupportedLanguage = true ,
789
804
credentialStartUrl = getStartUrl(project = context.project),
790
805
jobGroup = session.testGenerationJobGroupName,
0 commit comments