Skip to content

Commit

Permalink
Merge main into feature/q-dev-execution
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-toolkit-automation authored Nov 22, 2024
2 parents f7103bc + 6ce5a9b commit 041ac85
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "bugfix",
"description" : "Amazon Q Feature Dev: display limit reached error message"
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,14 @@ class FeatureDevService(val proxyClient: FeatureDevClient, val project: Project)
errMssg = e.awsErrorDetails().errorMessage()
logger.warn(e) { "Start conversation failed for request: ${e.requestId()}" }

if (e is software.amazon.awssdk.services.codewhispererruntime.model.ServiceQuotaExceededException) {
// BE service will throw ServiceQuota if conversation limit is reached. API Front-end will throw Throttling with this message if conversation limit is reached
if (
e is software.amazon.awssdk.services.codewhispererruntime.model.ServiceQuotaExceededException ||
(
e is software.amazon.awssdk.services.codewhispererruntime.model.ThrottlingException &&
e.message?.contains("reached for this month.") == true
)
) {
throw MonthlyConversationLimitError(errMssg, operation = FeatureDevOperation.CreateConversation.toString(), desc = null, cause = e.cause)
}
}
Expand Down Expand Up @@ -134,10 +141,19 @@ class FeatureDevService(val proxyClient: FeatureDevClient, val project: Project)
errMssg = e.awsErrorDetails().errorMessage()
logger.warn(e) { "StartTaskAssistCodeGeneration failed for request: ${e.requestId()}" }

if (e is software.amazon.awssdk.services.codewhispererruntime.model.ServiceQuotaExceededException || (
e is software.amazon.awssdk.services.codewhispererruntime.model.ThrottlingException && e.message?.contains(
"limit for number of iterations on a code generation"
) == true
// API Front-end will throw Throttling if conversation limit is reached. API Front-end monitors StartCodeGeneration for throttling
if (e is software.amazon.awssdk.services.codewhispererruntime.model.ThrottlingException &&
e.message?.contains("StartTaskAssistCodeGeneration reached for this month.") == true
) {
throw MonthlyConversationLimitError(errMssg, operation = FeatureDevOperation.StartTaskAssistCodeGeneration.toString(), desc = null, e.cause)
}
// BE service will throw ServiceQuota if code generation iteration limit is reached
else if (e is software.amazon.awssdk.services.codewhispererruntime.model.ServiceQuotaExceededException || (
e is software.amazon.awssdk.services.codewhispererruntime.model.ThrottlingException && (
e.message?.contains(
"limit for number of iterations on a code generation"
) == true
)
)
) {
throw CodeIterationLimitException(operation = FeatureDevOperation.StartTaskAssistCodeGeneration.toString(), desc = null, e.cause)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.ContentLengthE
import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.ExportParseException
import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.FeatureDevException
import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.FeatureDevTestBase
import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.MonthlyConversationLimitError
import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.clients.FeatureDevClient
import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.session.CodeGenerationStreamResult
import software.aws.toolkits.jetbrains.services.amazonqFeatureDev.session.CodeReferenceGenerated
Expand Down Expand Up @@ -195,6 +196,37 @@ class FeatureDevServiceTest : FeatureDevTestBase() {
)
}

@Test
fun `test startTaskAssistConversation throws ThrottlingException, different case`() {
val exampleCWException =
ThrottlingException
.builder()
.awsErrorDetails(
AwsErrorDetails.builder().errorMessage("StartTaskAssistCodeGeneration reached for this month.").build(),
).build()
whenever(
featureDevClient.startTaskAssistCodeGeneration(
testConversationId,
testUploadId,
userMessage,
codeGenerationId = codeGenerationId,
currentCodeGenerationId = "EMPTY_CURRENT_CODE_GENERATION_ID",
),
).thenThrow(exampleCWException)

assertThatThrownBy {
featureDevService.startTaskAssistCodeGeneration(
testConversationId,
testUploadId,
userMessage,
codeGenerationId = codeGenerationId,
currentCodeGenerationId = "EMPTY_CURRENT_CODE_GENERATION_ID",
)
}.isExactlyInstanceOf(MonthlyConversationLimitError::class.java).withFailMessage(
message("amazonqFeatureDev.exception.monthly_limit_error"),
)
}

@Test
fun `test startTaskAssistConversation throws ServiceQuotaExceededException`() {
val exampleCWException =
Expand Down

0 comments on commit 041ac85

Please sign in to comment.