Repository Analysis

floci-io/floci

Light, fluffy, and always free - The AWS Local Emulator alternative

14.8 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of floci-io/floci, a Java project with 16,649 GitHub stars. SynthScan v2.0 examined 458,041 lines of code across 1973 source files, recording 2097 pattern matches distributed across 15 syntactic categories. The overall adjusted score of 14.8 places this repository in the Low AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

14.8
Adjusted Score
14.8
Raw Score
100%
Time Factor
2026-07-14
Last Push
16.6K
Stars
Java
Language
458.0K
Lines of Code
2.0K
Files
2.1K
Pattern Hits
2026-07-14
Scan Date
0.15
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 237HIGH 68MEDIUM 1548LOW 244

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 2097 distinct pattern matches across 15 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Decorative Section Separators1546 hits · 3801 pts
SeverityFileLineSnippetContext
MEDIUM…t-java/src/test/java/com/floci/test/SchedulerTest.java135 // ──────────────────────────── Schedule CRUD ────────────────────────────COMMENT
MEDIUM…t-java/src/test/java/com/floci/test/SchedulerTest.java544 // ──────────────────────────── Tagging ────────────────────────────COMMENT
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java80 // ── Lambda handler source code ───────────────────────────────────────────COMMENT
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java160 // ── Setup / Teardown ─────────────────────────────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java182 // ── Helpers ──────────────────────────────────────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java287 // ──────────────────────────── 1. Basic WebSocket flow ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java319 // ──────────────────────────── 2. Chat-style broadcast ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java372 // ──────────────────────────── 3. $connect authorization ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java419 // ──────────────────────────── 4. Route selection ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java472 // ──────────────────────────── 5. @connections API ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java532 // ──────────────────────────── 6. Stage variables ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java571 // ──────────────────────────── 7. Mock integration ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java612 // ──────────────────────────── 8. Disconnect cleanup ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java653 // ──────────────────────────── 9. Payload size limit ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java693 // ──────────────────────────── 10. Server-initiated close via @connections DELETE ────────────────────────────STRING
MEDIUM…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java741 // ── WebSocket message capture listener ───────────────────────────────────STRING
MEDIUM…dk-test-java/src/test/java/com/floci/test/EksTest.java142 // ──────────────────────────── Managed node groups (#1137) ────────────────────────────COMMENT
MEDIUM…dk-test-java/src/test/java/com/floci/test/EksTest.java142 // ──────────────────────────── Managed node groups (#1137) ────────────────────────────COMMENT
MEDIUM…st/java/com/floci/test/CloudWatchLogsInsightsTest.java138 // ──────────────────────────── helpers ────────────────────────────COMMENT
MEDIUM…a/src/test/java/com/floci/test/IamEnforcementTest.java40 // ── Resource names ─────────────────────────────────────────────────────────COMMENT
MEDIUM…a/src/test/java/com/floci/test/IamEnforcementTest.java73 // ── Shared state ───────────────────────────────────────────────────────────COMMENT
MEDIUM…a/src/test/java/com/floci/test/IamEnforcementTest.java134 // ── Client factories ───────────────────────────────────────────────────────COMMENT
MEDIUM…a/src/test/java/com/floci/test/IamEnforcementTest.java180 // ── Tests ──────────────────────────────────────────────────────────────────COMMENT
MEDIUM…test-java/src/test/java/com/floci/test/LambdaTest.java203 // ─────────────────────────────────────────────────────────────────────────COMMENT
MEDIUM…test-java/src/test/java/com/floci/test/LambdaTest.java205 // ─────────────────────────────────────────────────────────────────────────COMMENT
MEDIUM…/com/floci/test/CloudFormationLambdaInlineZipTest.java48 // ── Node.js inline source ──────────────────────────────────────────────────COMMENT
MEDIUM…/com/floci/test/CloudFormationLambdaInlineZipTest.java108 // ── Python inline source ───────────────────────────────────────────────────STRING
MEDIUM…/com/floci/test/CloudFormationLambdaInlineZipTest.java153 // ── helpers ────────────────────────────────────────────────────────────────STRING
MEDIUM…st/java/com/floci/test/LambdaPayloadSizeLimitTest.java53 // ── Request payload limits ──────────────────────────────────────────────COMMENT
MEDIUM…st/java/com/floci/test/LambdaPayloadSizeLimitTest.java104 // ── Response payload limit ──────────────────────────────────────────────COMMENT
MEDIUM…va/src/test/java/com/floci/test/CodeDeployEcsTest.java101 // ── ELB v2 setup ─────────────────────────────────────────────────────────COMMENT
MEDIUM…va/src/test/java/com/floci/test/CodeDeployEcsTest.java181 // ── ECS setup ────────────────────────────────────────────────────────────COMMENT
MEDIUM…va/src/test/java/com/floci/test/CodeDeployEcsTest.java221 // ── CodeDeploy ECS deployment ─────────────────────────────────────────────COMMENT
MEDIUM…va/src/test/java/com/floci/test/CodeDeployEcsTest.java396 // ── Canary deployment variant ─────────────────────────────────────────────STRING
MEDIUM…rc/test/java/com/floci/test/StepFunctionsTagsTest.java69 // ──────────────── State Machine Tags ────────────────STRING
MEDIUM…rc/test/java/com/floci/test/StepFunctionsTagsTest.java115 // ──────────────── Activity Tags ────────────────STRING
MEDIUM…rc/test/java/com/floci/test/StepFunctionsTagsTest.java146 // ──────────────── Helpers ────────────────STRING
MEDIUM…-java/src/test/java/com/floci/test/CognitoSrpTest.java186 // ────────────────────────── Caldera SRP helpers ──────────────────────────COMMENT
MEDIUM…est/java/com/floci/test/StepFunctionsActivityTest.java56 // ──────────────────────────── Part A: Activity CRUD ────────────────────────────COMMENT
MEDIUM…est/java/com/floci/test/StepFunctionsActivityTest.java98 // ──────────────────────────── Part B: Activity task roundtrip ────────────────────────────COMMENT
MEDIUM…est/java/com/floci/test/StepFunctionsActivityTest.java156 // ──────────────────────────── Part C: waitForTaskToken ────────────────────────────STRING
MEDIUM…est/java/com/floci/test/StepFunctionsActivityTest.java220 // ──────────────────────────── helper ────────────────────────────STRING
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java128 // ─── Load Balancers ──────────────────────────────────────────────────────COMMENT
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java223 // ─── Target Groups ───────────────────────────────────────────────────────COMMENT
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java290 // ─── Targets ─────────────────────────────────────────────────────────────COMMENT
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java318 // ─── Listeners ───────────────────────────────────────────────────────────COMMENT
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java371 // ─── Rules ───────────────────────────────────────────────────────────────COMMENT
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java481 // ─── Tags ────────────────────────────────────────────────────────────────COMMENT
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java513 // ─── SSL Policies / Account Limits ───────────────────────────────────────COMMENT
MEDIUM…-test-java/src/test/java/com/floci/test/ElbV2Test.java542 // ─── Delete cascade ──────────────────────────────────────────────────────COMMENT
MEDIUM…/test/java/com/floci/test/SesConfigurationSetTest.java68 // ─────────────────────────── V2 (SESv2) ───────────────────────────COMMENT
MEDIUM…/test/java/com/floci/test/SesConfigurationSetTest.java130 // ─────────────────────────── V1 (SES) ───────────────────────────COMMENT
MEDIUM…/test/java/com/floci/test/SesConfigurationSetTest.java192 // ────────────────────────── Validation ──────────────────────────COMMENT
MEDIUM…/test/java/com/floci/test/SesConfigurationSetTest.java216 // ─────────────────── V2 SuppressionOptions (per-CS) ───────────────────COMMENT
MEDIUM…/test/java/com/floci/test/SesConfigurationSetTest.java309 // ─────────────────────────── Helpers ───────────────────────────COMMENT
MEDIUM…test-java/src/test/java/com/floci/test/BackupTest.java55 // ── Vault ──────────────────────────────────────────────────────────────────COMMENT
MEDIUM…test-java/src/test/java/com/floci/test/BackupTest.java110 // ── Plan ───────────────────────────────────────────────────────────────────COMMENT
MEDIUM…test-java/src/test/java/com/floci/test/BackupTest.java179 // ── Selection ──────────────────────────────────────────────────────────────COMMENT
MEDIUM…test-java/src/test/java/com/floci/test/BackupTest.java231 // ── Job ────────────────────────────────────────────────────────────────────COMMENT
MEDIUM…test-java/src/test/java/com/floci/test/BackupTest.java298 // ── Recovery Point ─────────────────────────────────────────────────────────COMMENT
1486 more matches not shown…
Hallucination Indicators237 hits · 2378 pts
SeverityFileLineSnippetContext
CRITICAL…t-java/src/test/java/com/floci/test/SchedulerTest.java313 .retryPolicy(software.amazon.awssdk.services.scheduler.model.RetryPolicy.builder()CODE
CRITICAL…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java254 .credentialsProvider(software.amazon.awssdk.auth.credentials.StaticCredentialsProvider.create(STRING
CRITICAL…com/floci/test/ApiGatewayV2WebSocketDataPlaneTest.java255 software.amazon.awssdk.auth.credentials.AwsBasicCredentials.create("test", "test")))STRING
CRITICAL…dk-test-java/src/test/java/com/floci/test/SsmTest.java167 software.amazon.awssdk.services.ssm.model.Tag.builder().key("env").value("test").build(),CODE
CRITICAL…dk-test-java/src/test/java/com/floci/test/SsmTest.java168 software.amazon.awssdk.services.ssm.model.Tag.builder().key("team").value("backend").build()CODE
CRITICAL…va/src/test/java/com/floci/test/CodeDeployEcsTest.java154 .defaultActions(software.amazon.awssdk.services.elasticloadbalancingv2.model.Action.builder()CODE
CRITICAL…st-java/src/test/java/com/floci/test/FirehoseTest.java89 .record(software.amazon.awssdk.services.firehose.model.Record.builder()CODE
CRITICAL…st-java/src/test/java/com/floci/test/FirehoseTest.java102 software.amazon.awssdk.services.firehose.model.Record.builder().data(SdkBytes.fromString("{\"i\":1}", StCODE
CRITICAL…st-java/src/test/java/com/floci/test/FirehoseTest.java103 software.amazon.awssdk.services.firehose.model.Record.builder().data(SdkBytes.fromString("{\"i\":2}", StCODE
CRITICAL…st-java/src/test/java/com/floci/test/FirehoseTest.java104 software.amazon.awssdk.services.firehose.model.Record.builder().data(SdkBytes.fromString("{\"i\":3}", StCODE
CRITICAL…k-test-java/src/test/java/com/floci/test/Ec2Tests.java587 .tags(software.amazon.awssdk.services.ec2.model.Tag.builder().key("Name").value("sdk-test-instance").buiCODE
CRITICAL…/test/java/com/floci/test/SesConfigurationSetTest.java73 sesV2.createConfigurationSet(software.amazon.awssdk.services.sesv2.model.CreateConfigurationSetRequest.builder()CODE
CRITICAL…/test/java/com/floci/test/SesConfigurationSetTest.java88 assertThatThrownBy(() -> sesV2.createConfigurationSet(software.amazon.awssdk.services.sesv2.model.CreateConfigurCODE
CRITICAL…/test/java/com/floci/test/SesConfigurationSetTest.java111 sesV2.listConfigurationSets(software.amazon.awssdk.services.sesv2.model.ListConfigurationSetsRequest.buiCODE
CRITICAL…/test/java/com/floci/test/SesConfigurationSetTest.java118 sesV2.deleteConfigurationSet(software.amazon.awssdk.services.sesv2.model.DeleteConfigurationSetRequest.builder()CODE
CRITICAL…/test/java/com/floci/test/SesConfigurationSetTest.java197 assertThatThrownBy(() -> sesV2.createConfigurationSet(software.amazon.awssdk.services.sesv2.model.CreateConfigurCODE
CRITICAL…/test/java/com/floci/test/SesConfigurationSetTest.java221 sesV2.createConfigurationSet(software.amazon.awssdk.services.sesv2.model.CreateConfigurationSetRequest.builder()CODE
CRITICAL…/test/java/com/floci/test/SesConfigurationSetTest.java321 sesV2.deleteConfigurationSet(software.amazon.awssdk.services.sesv2.model.DeleteConfigurationSetRequest.buildCODE
CRITICAL…dk-test-java/src/test/java/com/floci/test/AcmTest.java246 software.amazon.awssdk.services.acm.model.Tag.builder().key("Environment").value("test").build()CODE
CRITICAL…dk-test-java/src/test/java/com/floci/test/AcmTest.java247 software.amazon.awssdk.services.acm.model.Tag.builder().key("Project").value("floci").build()CODE
CRITICAL…dk-test-java/src/test/java/com/floci/test/AcmTest.java268 .tags(software.amazon.awssdk.services.acm.model.Tag.builder().key("Project").value("floci").build()));CODE
CRITICAL…st-java/src/test/java/com/floci/test/DynamoDbTest.java269 software.amazon.awssdk.services.dynamodb.model.Tag.builder().key("env").value("test").build(),CODE
CRITICAL…st-java/src/test/java/com/floci/test/DynamoDbTest.java270 software.amazon.awssdk.services.dynamodb.model.Tag.builder().key("team").value("backend").build(CODE
CRITICAL…ava/com/floci/test/CloudFormationVirtualHostTests.java38 .credentialsProvider(software.amazon.awssdk.auth.credentials.StaticCredentialsProvider.create(CODE
CRITICAL…ava/com/floci/test/CloudFormationVirtualHostTests.java39 software.amazon.awssdk.auth.credentials.AwsBasicCredentials.create("test", "test")))CODE
CRITICAL…t-java/src/test/java/com/floci/test/S3ControlTest.java126 software.amazon.awssdk.services.s3control.model.Tag.builder()CODE
CRITICAL…t-java/src/test/java/com/floci/test/S3ControlTest.java128 software.amazon.awssdk.services.s3control.model.Tag.builder()CODE
CRITICAL…t-java/src/test/java/com/floci/test/S3ControlTest.java150 .tags(software.amazon.awssdk.services.s3control.model.Tag.builder()CODE
CRITICAL…t-java/src/test/java/com/floci/test/S3ControlTest.java177 software.amazon.awssdk.services.s3control.model.Tag.builder()CODE
CRITICAL…t-java/src/test/java/com/floci/test/S3ControlTest.java179 software.amazon.awssdk.services.s3control.model.Tag.builder()CODE
CRITICAL…k-test-java/src/test/java/com/floci/test/EcsTests.java289 .tags(software.amazon.awssdk.services.ecs.model.Tag.builder().key("env").value("test").build(),CODE
CRITICAL…k-test-java/src/test/java/com/floci/test/EcsTests.java290 software.amazon.awssdk.services.ecs.model.Tag.builder().key("team").value("sdk").build())CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java317 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java338 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java364 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java437 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java540 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java692 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java731 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java755 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…java/src/test/java/com/floci/test/SesTemplateTest.java814 .template(software.amazon.awssdk.services.ses.model.Template.builder()CODE
CRITICAL…test/java/com/floci/test/LambdaFunctionConfigTest.java235 .imageConfig(software.amazon.awssdk.services.lambda.model.ImageConfig.builder()CODE
CRITICAL…test/java/com/floci/test/LambdaFunctionConfigTest.java254 .imageConfig(software.amazon.awssdk.services.lambda.model.ImageConfig.builder()CODE
CRITICAL…dk-test-java/src/test/java/com/floci/test/IamTest.java174 .tags(software.amazon.awssdk.services.iam.model.Tag.builder().key("env").value("sdk-test").build())CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java233 software.amazon.awssdk.services.ses.model.CreateConfigurationSetEventDestinationRequest.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java235 .eventDestination(software.amazon.awssdk.services.ses.model.EventDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java241 .snsDestination(software.amazon.awssdk.services.ses.model.SNSDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java274 software.amazon.awssdk.services.ses.model.DescribeConfigurationSetRequest.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java284 software.amazon.awssdk.services.ses.model.CreateConfigurationSetEventDestinationRequest.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java286 .eventDestination(software.amazon.awssdk.services.ses.model.EventDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java290 .snsDestination(software.amazon.awssdk.services.ses.model.SNSDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java304 software.amazon.awssdk.services.ses.model.UpdateConfigurationSetEventDestinationRequest.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java306 .eventDestination(software.amazon.awssdk.services.ses.model.EventDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java310 .snsDestination(software.amazon.awssdk.services.ses.model.SNSDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java318 software.amazon.awssdk.services.ses.model.DescribeConfigurationSetRequest.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java334 software.amazon.awssdk.services.ses.model.UpdateConfigurationSetEventDestinationRequest.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java336 .eventDestination(software.amazon.awssdk.services.ses.model.EventDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java340 .snsDestination(software.amazon.awssdk.services.ses.model.SNSDestination.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java352 software.amazon.awssdk.services.ses.model.CreateConfigurationSetEventDestinationRequest.builder()CODE
CRITICAL…loci/test/SesConfigurationSetEventDestinationTest.java354 .eventDestination(software.amazon.awssdk.services.ses.model.EventDestination.builder()CODE
177 more matches not shown…
Cross-File Repetition66 hits · 330 pts
SeverityFileLineSnippetContext
HIGH…e/common/AssumedRoleAccountRoutingIntegrationTest.java0{ "tablename": "%s", "keyschema": [{"attributename": "id", "keytype": "hash"}], "attributedefinitions": [{"attributenameSTRING
HIGH…rvices/dynamodb/DynamoDbProjectionIntegrationTest.java0{ "tablename": "%s", "keyschema": [{"attributename": "id", "keytype": "hash"}], "attributedefinitions": [{"attributenameSTRING
HIGH…services/dynamodb/DynamoDbTableArnIntegrationTest.java0{ "tablename": "%s", "keyschema": [{"attributename": "id", "keytype": "hash"}], "attributedefinitions": [{"attributenameSTRING
HIGH…t/floci/services/dynamodb/DynamoDbIntegrationTest.java0{ "tablename": "%s", "keyschema": [{"attributename": "id", "keytype": "hash"}], "attributedefinitions": [{"attributenameSTRING
HIGH…/dynamodb/DynamoDbKinesisStreamingIntegrationTest.java0{ "tablename": "%s", "keyschema": [{"attributename": "id", "keytype": "hash"}], "attributedefinitions": [{"attributenameSTRING
HIGH…ctions/StepFunctionsAccountContextIntegrationTest.java0{ "tablename": "%s", "keyschema": [{"attributename": "id", "keytype": "hash"}], "attributedefinitions": [{"attributenameSTRING
HIGH…/services/apigateway/ApiGatewayAwsIntegrationTest.java0{ "tablename": "%s", "keyschema": [{"attributename": "id", "keytype": "hash"}], "attributedefinitions": [{"attributenameSTRING
HIGH…rvices/configservice/ConfigTaggingIntegrationTest.java0{ "resourcearn": "%s", "tags": [ {"key": "env", "value": "test"}, {"key": "team", "value": "sfn"} ] }STRING
HIGH…/hectorvent/floci/services/ecs/EcsIntegrationTest.java0{ "resourcearn": "%s", "tags": [ {"key": "env", "value": "test"}, {"key": "team", "value": "sfn"} ] }STRING
HIGH…oci/services/codedeploy/CodeDeployIntegrationTest.java0{ "resourcearn": "%s", "tags": [ {"key": "env", "value": "test"}, {"key": "team", "value": "sfn"} ] }STRING
HIGH…tepfunctions/StepFunctionsDynamoDbIntegrationTest.java0{ "resourcearn": "%s", "tags": [ {"key": "env", "value": "test"}, {"key": "team", "value": "sfn"} ] }STRING
HIGH…ces/cognito/AdminUserGlobalSignOutIntegrationTest.java0{"userpoolid":"%s","username":"%s","password":"%s","permanent":true}STRING
HIGH…oci/services/cognito/GlobalSignOutIntegrationTest.java0{"userpoolid":"%s","username":"%s","password":"%s","permanent":true}STRING
HIGH…t/floci/services/cognito/OriginJtiIntegrationTest.java0{"userpoolid":"%s","username":"%s","password":"%s","permanent":true}STRING
HIGH…ces/cognito/AdminUserGlobalSignOutIntegrationTest.java0{ "clientid": "%s", "authflow": "user_password_auth", "authparameters": {"username": "%s", "password": "%s"} }STRING
HIGH…oci/services/cognito/GlobalSignOutIntegrationTest.java0{ "clientid": "%s", "authflow": "user_password_auth", "authparameters": {"username": "%s", "password": "%s"} }STRING
HIGH…t/floci/services/cognito/OriginJtiIntegrationTest.java0{ "clientid": "%s", "authflow": "user_password_auth", "authparameters": {"username": "%s", "password": "%s"} }STRING
HIGH…ces/cognito/AdminUserGlobalSignOutIntegrationTest.java0{ "clientid": "%s", "authflow": "refresh_token_auth", "authparameters": {"refresh_token": "%s"} }STRING
HIGH…oci/services/cognito/GlobalSignOutIntegrationTest.java0{ "clientid": "%s", "authflow": "refresh_token_auth", "authparameters": {"refresh_token": "%s"} }STRING
HIGH…t/floci/services/cognito/OriginJtiIntegrationTest.java0{ "clientid": "%s", "authflow": "refresh_token_auth", "authparameters": {"refresh_token": "%s"} }STRING
HIGH…i/services/dynamodb/DynamoDbExportIntegrationTest.java0{ "tablename": "%s", "keyschema": [ {"attributename": "pk", "keytype": "hash"}, {"attributename": "sk", "keytype": "rangSTRING
HIGH…/dynamodb/DynamoDbFilterExpressionIntegrationTest.java0{ "tablename": "%s", "keyschema": [ {"attributename": "pk", "keytype": "hash"}, {"attributename": "sk", "keytype": "rangSTRING
HIGH…t/floci/services/dynamodb/DynamoDbIntegrationTest.java0{ "tablename": "%s", "keyschema": [ {"attributename": "pk", "keytype": "hash"}, {"attributename": "sk", "keytype": "rangSTRING
HIGH…tepfunctions/StepFunctionsDynamoDbIntegrationTest.java0{ "tablename": "%s", "keyschema": [ {"attributename": "pk", "keytype": "hash"}, {"attributename": "sk", "keytype": "rangSTRING
HIGH…services/apigatewayv2/WebSocketConnectionsApiTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…ices/apigatewayv2/WebSocketAwsHttpIntegrationTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…ces/apigatewayv2/WebSocketConnectionLifecycleTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…services/apigatewayv2/WebSocketMessageRoutingTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…/services/apigatewayv2/WebSocketRouteResponseTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…rvices/apigatewayv2/WebSocketLambdaAuthorizerTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…ervices/apigatewayv2/HttpApiRequestAuthorizerTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…services/apigatewayv2/WebSocketStageVariablesTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…rvices/apigatewayv2/WebSocketProxyEventFormatTest.java0{"functionname":"%s","runtime":"nodejs20.x","role":"arn:aws:iam::000000000000:role/lambda-role","handler":"index.handlerSTRING
HIGH…services/apigatewayv2/WebSocketConnectionsApiTest.java0{"integrationtype":"aws_proxy","integrationuri":"arn:aws:lambda:us-east-1:000000000000:function:%s/invocations","integraSTRING
HIGH…ices/apigatewayv2/WebSocketAwsHttpIntegrationTest.java0{"integrationtype":"aws_proxy","integrationuri":"arn:aws:lambda:us-east-1:000000000000:function:%s/invocations","integraSTRING
HIGH…ces/apigatewayv2/WebSocketConnectionLifecycleTest.java0{"integrationtype":"aws_proxy","integrationuri":"arn:aws:lambda:us-east-1:000000000000:function:%s/invocations","integraSTRING
HIGH…services/apigatewayv2/WebSocketMessageRoutingTest.java0{"integrationtype":"aws_proxy","integrationuri":"arn:aws:lambda:us-east-1:000000000000:function:%s/invocations","integraSTRING
HIGH…/services/apigatewayv2/WebSocketRouteResponseTest.java0{"integrationtype":"aws_proxy","integrationuri":"arn:aws:lambda:us-east-1:000000000000:function:%s/invocations","integraSTRING
HIGH…rvices/apigatewayv2/WebSocketLambdaAuthorizerTest.java0{"integrationtype":"aws_proxy","integrationuri":"arn:aws:lambda:us-east-1:000000000000:function:%s/invocations","integraSTRING
HIGH…rvices/apigatewayv2/WebSocketProxyEventFormatTest.java0{"integrationtype":"aws_proxy","integrationuri":"arn:aws:lambda:us-east-1:000000000000:function:%s/invocations","integraSTRING
HIGH…services/apigatewayv2/WebSocketConnectionsApiTest.java0{"routekey":"$default","target":"integrations/%s","routeresponseselectionexpression":"$default"}STRING
HIGH…ices/apigatewayv2/WebSocketAwsHttpIntegrationTest.java0{"routekey":"$default","target":"integrations/%s","routeresponseselectionexpression":"$default"}STRING
HIGH…services/apigatewayv2/WebSocketMessageRoutingTest.java0{"routekey":"$default","target":"integrations/%s","routeresponseselectionexpression":"$default"}STRING
HIGH…rvices/apigatewayv2/WebSocketLambdaAuthorizerTest.java0{"routekey":"$default","target":"integrations/%s","routeresponseselectionexpression":"$default"}STRING
HIGH…services/apigatewayv2/WebSocketStageVariablesTest.java0{"routekey":"$default","target":"integrations/%s","routeresponseselectionexpression":"$default"}STRING
HIGH…rvices/apigatewayv2/WebSocketProxyEventFormatTest.java0{"routekey":"$default","target":"integrations/%s","routeresponseselectionexpression":"$default"}STRING
HIGH…rvices/apigatewayv2/WebSocketLambdaAuthorizerTest.java0exports.handler = async (event) => ({ principalid: "test-user", policydocument: { version: "2012-10-17", statement: [{ aSTRING
HIGH…ervices/apigatewayv2/HttpApiRequestAuthorizerTest.java0exports.handler = async (event) => ({ principalid: "test-user", policydocument: { version: "2012-10-17", statement: [{ aSTRING
HIGH…ateway/ApiGatewayRequestAuthorizerIntegrationTest.java0exports.handler = async (event) => ({ principalid: "test-user", policydocument: { version: "2012-10-17", statement: [{ aSTRING
HIGH…services/ses/SesConfigurationSetV2IntegrationTest.java0<?xml version="1.0" encoding="utf-8"?> <changeresourcerecordsetsrequest xmlns="https://route53.amazonaws.com/doc/2013-04STRING
HIGH…ectorvent/floci/services/ses/SesV2IntegrationTest.java0<?xml version="1.0" encoding="utf-8"?> <changeresourcerecordsetsrequest xmlns="https://route53.amazonaws.com/doc/2013-04STRING
HIGH…sConfigurationSetTrackingOptionsV1IntegrationTest.java0<?xml version="1.0" encoding="utf-8"?> <changeresourcerecordsetsrequest xmlns="https://route53.amazonaws.com/doc/2013-04STRING
HIGH…services/ses/SesConfigurationSetV2IntegrationTest.java0<change> <action>create</action> <resourcerecordset> <name>STRING
HIGH…ectorvent/floci/services/ses/SesV2IntegrationTest.java0<change> <action>create</action> <resourcerecordset> <name>STRING
HIGH…sConfigurationSetTrackingOptionsV1IntegrationTest.java0<change> <action>create</action> <resourcerecordset> <name>STRING
HIGH…services/ses/SesConfigurationSetV2IntegrationTest.java0<type>cname</type> <ttl>300</ttl> <resourcerecords> <resourcerecord><value>STRING
HIGH…ectorvent/floci/services/ses/SesV2IntegrationTest.java0<type>cname</type> <ttl>300</ttl> <resourcerecords> <resourcerecord><value>STRING
HIGH…sConfigurationSetTrackingOptionsV1IntegrationTest.java0<type>cname</type> <ttl>300</ttl> <resourcerecords> <resourcerecord><value>STRING
HIGH…services/ses/SesConfigurationSetV2IntegrationTest.java0</changes> </changebatch> </changeresourcerecordsetsrequest>STRING
HIGH…ectorvent/floci/services/ses/SesV2IntegrationTest.java0</changes> </changebatch> </changeresourcerecordsetsrequest>STRING
6 more matches not shown…
Hyper-Verbose Identifiers174 hits · 175 pts
SeverityFileLineSnippetContext
LOWtools/docs/test_regen_action_docs.py17def test_extract_switch_single_label():CODE
LOWtools/docs/test_regen_action_docs.py59def test_extract_switch_ignores_non_pascal_and_default():STRING
LOWtools/docs/test_regen_action_docs.py68def test_extract_switch_excludes_screaming_case_enum_labels():STRING
LOWtools/docs/test_regen_action_docs.py102def test_extract_rest_ucfirsts_method_names():STRING
LOWtools/docs/test_regen_action_docs.py110def test_extract_rest_requires_class_path():STRING
LOWtools/docs/test_regen_action_docs.py115def test_extract_rest_skips_comments_between_annotation_and_method():STRING
LOWtools/docs/test_regen_action_docs.py181def test_parse_marker_block_rejects_missing_markers():STRING
LOWtools/docs/test_regen_action_docs.py186def test_parse_table_rejects_non_table_line():STRING
LOWtools/docs/test_regen_action_docs.py192def test_parse_table_rejects_extra_columns():STRING
LOWtools/docs/test_regen_action_docs.py200def test_pipe_in_description_round_trips():STRING
LOWtools/docs/test_regen_action_docs.py225def test_regenerate_preserves_known_and_placeholders_new():STRING
LOWtools/docs/test_regen_action_docs.py235def test_regenerate_is_idempotent():STRING
LOWtools/docs/test_regen_action_docs.py242def test_regenerate_touches_only_marker_block():STRING
LOWtools/docs/test_regen_action_docs.py249def test_render_marker_block_shape():STRING
LOWtools/docs/test_regen_action_docs.py28def test_extract_switch_multi_label_arm():STRING
LOWtools/docs/test_regen_action_docs.py38def test_extract_switch_multiline_arm():STRING
LOWtools/docs/test_regen_action_docs.py133def test_extract_actions_applies_rename_and_exclude(tmp_path: Path):STRING
LOWtools/docs/test_regen_action_docs.py146def test_extract_actions_dedupes_across_sources(tmp_path: Path):STRING
LOWtools/docs/test_regen_action_docs.py162def test_split_row_honors_escaped_pipe():STRING
LOWtools/docs/test_regen_action_docs.py166def test_parse_marker_block_preserves_descriptions():STRING
LOWtools/docs/regen_action_docs.py345def _find_unregistered_handlers(CODE
LOWcompatibility-tests/sdk-test-python/conftest.py125def resourcegroupstaggingapi_client(aws_config, client_config):CODE
LOW…patibility-tests/sdk-test-python/tests/test_cognito.py34 def test_create_user_pool_client(self, cognito_client, unique_name):CODE
LOW…patibility-tests/sdk-test-python/tests/test_cognito.py51 def test_delete_user_pool_client(self, cognito_client, unique_name):CODE
LOW…patibility-tests/sdk-test-python/tests/test_cognito.py204 def test_describe_user_pool_returns_all_standard_schema_attributes(self, cognito_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py147 def test_describe_nonexistent_pipe(self, pipes_client):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py188 def test_sqs_to_sqs_forwarding(self, pipes_client, sqs_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py226 def test_filter_criteria_filters_messages(self, pipes_client, sqs_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py285 def test_batch_size_in_source_parameters(self, pipes_client, sqs_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py331 def test_stopped_pipe_does_not_forward(self, pipes_client, sqs_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py367 def test_source_queue_drained_after_forwarding(CODE
LOW…y-tests/sdk-test-python/tests/test_s3_notifications.py53 def test_put_bucket_notification_configuration_with_filters(self):CODE
LOW…y-tests/sdk-test-python/tests/test_s3_notifications.py91 def test_get_bucket_notification_configuration_sqs_filter_roundtrip(self):CODE
LOW…y-tests/sdk-test-python/tests/test_s3_notifications.py125 def test_get_bucket_notification_configuration_sns_filter_roundtrip(self):CODE
LOW…patibility-tests/sdk-test-python/tests/test_kinesis.py50 def test_describe_stream_summary(self, kinesis_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sts.py17 def test_get_caller_identity_account_id(self, sts_client):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sts.py38 def test_assume_role_assumed_role_user(self, sts_client):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sts.py46 def test_assume_role_with_web_identity(self, sts_client):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sts.py61 def test_assume_role_missing_role_arn(self, sts_client):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sts.py81 def test_get_federation_token(self, sts_client):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sts.py94 def test_decode_authorization_message(self, sts_client):CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py63 def test_describe_time_to_live(self, dynamodb_client, test_table):CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py68 def test_update_and_describe_continuous_backups(self, dynamodb_client, unique_name):CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py250 def test_batch_write_item_put(self, dynamodb_client, test_table):CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py278 def test_batch_write_item_delete(self, dynamodb_client, test_table):CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py355 def test_list_tags_of_resource(self, dynamodb_client, unique_name):CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py417 def test_create_table_with_gsi_and_lsi(self, dynamodb_client, unique_name):CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py476 def test_query_gsi_sparse_index(self, dynamodb_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_iam.py216 def test_list_groups_for_user(self, iam_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_iam.py390 def test_list_attached_user_policies(self, iam_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sqs.py103 def test_delete_message_batch(self, sqs_client, test_queue):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sqs.py155 def test_set_queue_attributes(self, sqs_client, test_queue):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sqs.py274 def test_list_dead_letter_source_queues(self, sqs_client, unique_name):CODE
LOW…ibility-tests/sdk-test-python/tests/test_cloudwatch.py29 def test_put_metric_data_with_dimensions(self, cloudwatch_client, unique_name):CODE
LOW…ibility-tests/sdk-test-python/tests/test_cloudwatch.py66 def test_list_metrics_namespace_isolation(self, cloudwatch_client, unique_name):CODE
LOW…ibility-tests/sdk-test-python/tests/test_cloudwatch.py88 def test_get_metric_statistics(self, cloudwatch_client, unique_name):CODE
LOW…ibility-tests/sdk-test-python/tests/test_cloudwatch.py120 def test_put_metric_data_with_statistic_values(self, cloudwatch_client, unique_name):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_ecr.py36 def test_create_repository_returns_loopback_uri(self, ecr_client):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_ecr.py50 def test_create_duplicate_raises(self, ecr_client, repo):CODE
LOWcompatibility-tests/sdk-test-python/tests/test_ecr.py55 def test_describe_repositories(self, ecr_client, repo):CODE
114 more matches not shown…
Verbosity Indicators16 hits · 29 pts
SeverityFileLineSnippetContext
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java61 // Step 1: Create user WITHOUT the boolean field setCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java79 // Step 2: Update user - set boolean to true and other fieldsCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java89 // Step 3: Get the item and verify the boolean was set correctlyCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java109 // Step 1: Create user WITH boolean = falseCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java122 // Step 2: Update boolean to trueCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java129 // Step 3: Verify the boolean changed to trueCOMMENT
LOW…vent/floci/services/acm/AcmServicePersistenceTest.java40 // Step 1: Create a service with a persistent backend and create a certificateCOMMENT
LOW…vent/floci/services/acm/AcmServicePersistenceTest.java56 // Step 2: Create a second service instance sharing the same storage directory (simulating restart)COMMENT
LOW…vent/floci/services/acm/AcmServicePersistenceTest.java60 // Step 3: Validate that the certificate was correctly restored and properties matchCOMMENT
LOW…rvent/floci/services/codedeploy/CodeDeployService.java1586 // Step 1: shift canaryPercentage to targetVersionCOMMENT
LOW…rvent/floci/services/codedeploy/CodeDeployService.java1599 // Step 2: flip 100% to targetVersionCOMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java413 // Step 1: Send SASLInitialResponse with client-first-messageCOMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java431 // Step 2: Read AuthenticationSASLContinue (authType=11)COMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java454 // Step 3: Compute client-final-message with proofCOMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java472 // Step 4: Read AuthenticationSASLFinal (authType=12) — server signature (ignored)COMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java483 // Step 5: Read final AuthenticationOKCOMMENT
Structural Annotation Overuse16 hits · 29 pts
SeverityFileLineSnippetContext
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java61 // Step 1: Create user WITHOUT the boolean field setCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java79 // Step 2: Update user - set boolean to true and other fieldsCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java89 // Step 3: Get the item and verify the boolean was set correctlyCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java109 // Step 1: Create user WITH boolean = falseCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java122 // Step 2: Update boolean to trueCOMMENT
LOW…st/java/com/floci/test/DynamoDbEnhancedClientTest.java129 // Step 3: Verify the boolean changed to trueCOMMENT
LOW…vent/floci/services/acm/AcmServicePersistenceTest.java40 // Step 1: Create a service with a persistent backend and create a certificateCOMMENT
LOW…vent/floci/services/acm/AcmServicePersistenceTest.java56 // Step 2: Create a second service instance sharing the same storage directory (simulating restart)COMMENT
LOW…vent/floci/services/acm/AcmServicePersistenceTest.java60 // Step 3: Validate that the certificate was correctly restored and properties matchCOMMENT
LOW…rvent/floci/services/codedeploy/CodeDeployService.java1586 // Step 1: shift canaryPercentage to targetVersionCOMMENT
LOW…rvent/floci/services/codedeploy/CodeDeployService.java1599 // Step 2: flip 100% to targetVersionCOMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java413 // Step 1: Send SASLInitialResponse with client-first-messageCOMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java431 // Step 2: Read AuthenticationSASLContinue (authType=11)COMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java454 // Step 3: Compute client-final-message with proofCOMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java472 // Step 4: Read AuthenticationSASLFinal (authType=12) — server signature (ignored)COMMENT
LOW…/floci/services/rds/proxy/PostgresProtocolHandler.java483 // Step 5: Read final AuthenticationOKCOMMENT
Fake / Example Data10 hits · 12 pts
SeverityFileLineSnippetContext
LOWcompatibility-tests/sdk-test-python/tests/test_sts.py51 WebIdentityToken="dummy-token",CODE
LOW…b/hectorvent/floci/services/sns/SnsMobilePushTest.java55 "android-app", "GCM", Map.of("PlatformCredential", "fake-key"), REGION);CODE
LOW…ent/floci/services/cognito/CognitoIntegrationTest.java1743 { "Name": "email", "Value": "user@example.com" },CODE
LOW…rvices/appsync/graphql/scalars/AppSyncScalarsTest.java46 Object valid = AppSyncScalars.AWS_EMAIL.getCoercing().parseValue("user@example.com");CODE
LOW…rvices/appsync/graphql/scalars/AppSyncScalarsTest.java47 assertThat(valid, is("user@example.com"));CODE
LOW…torvent/floci/services/ses/SimulatorAddressesTest.java34 assertFalse(SimulatorAddresses.isSuccess("user@example.com"));CODE
LOW…torvent/floci/services/ses/SimulatorAddressesTest.java35 assertFalse(SimulatorAddresses.isBounce("user@example.com"));CODE
LOW…torvent/floci/services/ses/SimulatorAddressesTest.java36 assertFalse(SimulatorAddresses.isComplaint("user@example.com"));CODE
LOW…torvent/floci/services/ses/SimulatorAddressesTest.java37 assertFalse(SimulatorAddresses.isSuppressionList("user@example.com"));CODE
LOW…stepfunctions/StepFunctionsJsonataIntegrationTest.java1197 assertTrue(output.contains("Jane Doe"));STRING
Cross-Language Confusion2 hits · 11 pts
SeverityFileLineSnippetContext
HIGHtools/docs/test_regen_action_docs.py62 case null, default -> b();STRING
HIGHcompatibility-tests/sdk-test-python/conftest.py219 " const name = (event && event.name) ? event.name : 'World';\n"CODE
Excessive Try-Catch Wrapping8 hits · 10 pts
SeverityFileLineSnippetContext
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py411 except Exception:CODE
LOW…y-tests/sdk-test-python/tests/test_s3_notifications.py41 except Exception as e:CODE
LOW…y-tests/sdk-test-python/tests/test_s3_notifications.py45 except Exception as e:CODE
LOW…y-tests/sdk-test-python/tests/test_s3_notifications.py50 except Exception as e:CODE
LOW…ts/sdk-test-python/tests/test_cloudformation_naming.py86 except Exception as e:CODE
LOW…ts/sdk-test-python/tests/test_cloudformation_naming.py315 except Exception as e:CODE
LOW…patibility-tests/sdk-test-python/tests/test_s3_cors.py35 except Exception as e:CODE
LOW…patibility-tests/sdk-test-python/tests/test_s3_cors.py40 except Exception as e:CODE
Unused Imports9 hits · 9 pts
SeverityFileLineSnippetContext
LOWtools/docs/test_regen_action_docs.py5CODE
LOWtools/docs/regen_action_docs.py19CODE
LOW…patibility-tests/sdk-test-python/tests/test_cognito.py3CODE
LOW…patibility-tests/sdk-test-python/tests/test_kinesis.py5CODE
LOW…atibility-tests/sdk-test-python/tests/test_dynamodb.py3CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sqs.py6CODE
LOW…ibility-tests/sdk-test-python/tests/test_cloudwatch.py5CODE
LOWcompatibility-tests/sdk-test-python/tests/test_kms.py3CODE
LOWcompatibility-tests/sdk-test-python/tests/test_sns.py5CODE
Self-Referential Comments2 hits · 6 pts
SeverityFileLineSnippetContext
MEDIUMcompatibility-tests/sdk-test-python/tests/test_sqs.py219 # Create main queue and DLQCOMMENT
MEDIUMcompatibility-tests/sdk-test-python/tests/test_kms.py208 # Create an asymmetric signing keyCOMMENT
Modern Structural Boilerplate5 hits · 5 pts
SeverityFileLineSnippetContext
LOWcompatibility-tests/sdk-test-python/conftest.py15logger = logging.getLogger(__name__)CODE
LOW…y-tests/sdk-test-python/tests/test_s3_notifications.py7logger = logging.getLogger(__name__)CODE
LOWcompatibility-tests/sdk-test-python/tests/test_ecr.py14logger = logging.getLogger(__name__)CODE
LOW…ts/sdk-test-python/tests/test_cloudformation_naming.py13logger = logging.getLogger(__name__)CODE
LOW…patibility-tests/sdk-test-python/tests/test_s3_cors.py9logger = logging.getLogger(__name__)CODE
Over-Commented Block3 hits · 3 pts
SeverityFileLineSnippetContext
LOWtools/docs/regen_action_docs.py41# doc and the tool's output would agree on the omission.COMMENT
LOWdocker/entrypoint.sh1#!/bin/shCOMMENT
LOW.github/workflows/conventional-commits.yml21 env:COMMENT
Deep Nesting2 hits · 2 pts
SeverityFileLineSnippetContext
LOWcompatibility-tests/sdk-test-python/conftest.py235CODE
LOWcompatibility-tests/sdk-test-python/tests/test_pipes.py285CODE
Redundant / Tautological Comments1 hit · 2 pts
SeverityFileLineSnippetContext
LOW…sts/sdk-test-awscli/test/test_helper/common-setup.bash48# Check if operation is unsupportedCOMMENT