-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v2 Smoketest codegen #3758
v2 Smoketest codegen #3758
Changes from 9 commits
e65dd73
7d3cbb2
83b927a
14be1a5
fa8e4bb
8c545d5
65f5d1a
fb0a74c
62ff67e
84c7892
71636d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,217 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package software.amazon.smithy.rustsdk | ||
|
||
import software.amazon.smithy.aws.smoketests.model.AwsSmokeTestModel | ||
import software.amazon.smithy.model.Model | ||
import software.amazon.smithy.model.node.ObjectNode | ||
import software.amazon.smithy.model.shapes.MemberShape | ||
import software.amazon.smithy.model.shapes.OperationShape | ||
import software.amazon.smithy.model.shapes.StructureShape | ||
import software.amazon.smithy.rust.codegen.client.smithy.ClientCodegenContext | ||
import software.amazon.smithy.rust.codegen.client.smithy.customize.ClientCodegenDecorator | ||
import software.amazon.smithy.rust.codegen.client.smithy.generators.client.FluentClientGenerator | ||
import software.amazon.smithy.rust.codegen.core.rustlang.Attribute | ||
import software.amazon.smithy.rust.codegen.core.rustlang.Attribute.Companion.cfg | ||
import software.amazon.smithy.rust.codegen.core.rustlang.AttributeKind | ||
import software.amazon.smithy.rust.codegen.core.rustlang.RustWriter | ||
import software.amazon.smithy.rust.codegen.core.rustlang.containerDocs | ||
import software.amazon.smithy.rust.codegen.core.rustlang.docs | ||
import software.amazon.smithy.rust.codegen.core.rustlang.rust | ||
import software.amazon.smithy.rust.codegen.core.rustlang.rustBlock | ||
import software.amazon.smithy.rust.codegen.core.smithy.CodegenContext | ||
import software.amazon.smithy.rust.codegen.core.smithy.RustCrate | ||
import software.amazon.smithy.rust.codegen.core.smithy.generators.BuilderGenerator | ||
import software.amazon.smithy.rust.codegen.core.smithy.generators.Instantiator | ||
import software.amazon.smithy.rust.codegen.core.smithy.generators.setterName | ||
import software.amazon.smithy.rust.codegen.core.testutil.integrationTest | ||
import software.amazon.smithy.rust.codegen.core.util.dq | ||
import software.amazon.smithy.rust.codegen.core.util.expectTrait | ||
import software.amazon.smithy.rust.codegen.core.util.inputShape | ||
import software.amazon.smithy.rust.codegen.core.util.orNull | ||
import software.amazon.smithy.rust.codegen.core.util.toSnakeCase | ||
import software.amazon.smithy.smoketests.traits.Expectation | ||
import software.amazon.smithy.smoketests.traits.SmokeTestCase | ||
import software.amazon.smithy.smoketests.traits.SmokeTestsTrait | ||
import java.util.Optional | ||
import java.util.logging.Logger | ||
|
||
class SmokeTestsDecorator : ClientCodegenDecorator { | ||
override val name: String = "SmokeTests" | ||
override val order: Byte = 0 | ||
private val logger: Logger = Logger.getLogger(javaClass.name) | ||
|
||
private fun isSmokeTestSupported(smokeTestCase: SmokeTestCase): Boolean { | ||
AwsSmokeTestModel.getAwsVendorParams(smokeTestCase)?.orNull()?.let { vendorParams -> | ||
if (vendorParams.sigv4aRegionSet.isPresent) { | ||
logger.warning("skipping smoketest `${smokeTestCase.id}` with unsupported vendorParam `sigv4aRegionSet`") | ||
return false | ||
} | ||
if (vendorParams.useAccountIdRouting()) { | ||
Velfi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
logger.warning("skipping smoketest `${smokeTestCase.id}` with unsupported vendorParam `useAccountIdRouting`") | ||
return false | ||
} | ||
} | ||
AwsSmokeTestModel.getS3VendorParams(smokeTestCase)?.orNull()?.let { s3VendorParams -> | ||
if (s3VendorParams.useGlobalEndpoint()) { | ||
logger.warning("skipping smoketest `${smokeTestCase.id}` with unsupported vendorParam `useGlobalEndpoint`") | ||
return false | ||
} | ||
} | ||
|
||
return true | ||
} | ||
|
||
override fun extras( | ||
codegenContext: ClientCodegenContext, | ||
rustCrate: RustCrate, | ||
) { | ||
// Get all operations with smoke tests | ||
val smokeTestedOperations = | ||
codegenContext.model.getOperationShapesWithTrait(SmokeTestsTrait::class.java).toList() | ||
val supportedTests = | ||
smokeTestedOperations.map { operationShape -> | ||
// filter out unsupported smoke tests, logging a warning for each one. | ||
val testCases = | ||
operationShape.expectTrait<SmokeTestsTrait>().testCases.filter { smokeTestCase -> | ||
isSmokeTestSupported(smokeTestCase) | ||
} | ||
|
||
operationShape to testCases | ||
} | ||
// filter out operations with no supported smoke tests | ||
.filter { (_, testCases) -> testCases.isNotEmpty() } | ||
// Return if there are no supported smoke tests across all operations | ||
if (supportedTests.isEmpty()) return | ||
|
||
rustCrate.integrationTest("smoketests") { | ||
// Don't run the tests in this module unless `RUSTFLAGS="--cfg smoketests"` is passed. | ||
Attribute(cfg("smoketests")).render(this, AttributeKind.Inner) | ||
|
||
containerDocs( | ||
""" | ||
The tests in this module run against live AWS services. As such, | ||
they are disabled by default. To enable them, run the tests with | ||
|
||
```sh | ||
RUSTFLAGS="--cfg smoketests" cargo test. | ||
```""", | ||
) | ||
|
||
val model = codegenContext.model | ||
val moduleUseName = codegenContext.moduleUseName() | ||
rust("use $moduleUseName::{ Client, config };") | ||
|
||
for ((operationShape, testCases) in supportedTests) { | ||
val operationName = operationShape.id.name.toSnakeCase() | ||
val operationInput = operationShape.inputShape(model) | ||
|
||
docs("Smoke tests for the `$operationName` operation") | ||
|
||
for (testCase in testCases) { | ||
Attribute.TokioTest.render(this) | ||
this.rustBlock("async fn test_${testCase.id.toSnakeCase()}()") { | ||
val instantiator = SmokeTestsInstantiator(codegenContext) | ||
instantiator.renderConf(this, testCase) | ||
rust("let client = Client::from_conf(conf);") | ||
instantiator.renderInput(this, operationShape, operationInput, testCase.params) | ||
instantiator.renderExpectation(this, model, testCase.expectation) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
class SmokeTestsBuilderKindBehavior(val codegenContext: CodegenContext) : Instantiator.BuilderKindBehavior { | ||
override fun hasFallibleBuilder(shape: StructureShape): Boolean = | ||
BuilderGenerator.hasFallibleBuilder(shape, codegenContext.symbolProvider) | ||
|
||
override fun setterName(memberShape: MemberShape): String = memberShape.setterName() | ||
|
||
override fun doesSetterTakeInOption(memberShape: MemberShape): Boolean = true | ||
} | ||
|
||
class SmokeTestsInstantiator(private val codegenContext: ClientCodegenContext) : Instantiator( | ||
codegenContext.symbolProvider, | ||
codegenContext.model, | ||
codegenContext.runtimeConfig, | ||
SmokeTestsBuilderKindBehavior(codegenContext), | ||
) { | ||
fun renderConf( | ||
writer: RustWriter, | ||
testCase: SmokeTestCase, | ||
) { | ||
writer.rust("let conf = config::Builder::new()") | ||
writer.indent() | ||
writer.rust(".behavior_version(config::BehaviorVersion::latest())") | ||
|
||
val vendorParams = AwsSmokeTestModel.getAwsVendorParams(testCase) | ||
vendorParams.orNull()?.let { params -> | ||
writer.rust(".region(config::Region::new(${params.region.dq()}))") | ||
writer.rust(".use_dual_stack(${params.useDualstack()})") | ||
writer.rust(".use_fips(${params.useFips()})") | ||
params.uri.orNull()?.let { writer.rust(".endpoint_url($it)") } | ||
} | ||
|
||
val s3VendorParams = AwsSmokeTestModel.getS3VendorParams(testCase) | ||
s3VendorParams.orNull()?.let { params -> | ||
writer.rust(".accelerate_(${params.useAccelerate()})") | ||
writer.rust(".force_path_style_(${params.forcePathStyle()})") | ||
writer.rust(".use_arn_region(${params.useArnRegion()})") | ||
writer.rust(".disable_multi_region_access_points(${params.useMultiRegionAccessPoints().not()})") | ||
} | ||
|
||
writer.rust(".build();") | ||
writer.dedent() | ||
} | ||
|
||
fun renderInput( | ||
writer: RustWriter, | ||
operationShape: OperationShape, | ||
inputShape: StructureShape, | ||
data: Optional<ObjectNode>, | ||
headers: Map<String, String> = mapOf(), | ||
ctx: Ctx = Ctx(), | ||
) { | ||
val operationBuilderName = | ||
FluentClientGenerator.clientOperationFnName(operationShape, codegenContext.symbolProvider) | ||
|
||
writer.rust("let res = client.$operationBuilderName()") | ||
writer.indent() | ||
data.orNull()?.let { | ||
renderStructureMembers(writer, inputShape, it, headers, ctx) | ||
} | ||
writer.rust(".send().await;") | ||
writer.dedent() | ||
} | ||
|
||
fun renderExpectation( | ||
writer: RustWriter, | ||
model: Model, | ||
expectation: Expectation, | ||
) { | ||
if (expectation.isSuccess) { | ||
writer.rust("""res.expect("request should succeed");""") | ||
} else if (expectation.isFailure) { | ||
val expectedErrShape = expectation.failure.orNull()?.errorId?.orNull() | ||
println(expectedErrShape) | ||
if (expectedErrShape != null) { | ||
val failureShape = model.expectShape(expectedErrShape) | ||
val errName = codegenContext.symbolProvider.toSymbol(failureShape).name.toSnakeCase() | ||
writer.rust( | ||
""" | ||
let err = res.expect_err("request should fail"); | ||
let err = err.into_service_error(); | ||
assert!(err.is_$errName()) | ||
""", | ||
) | ||
} else { | ||
writer.rust("""res.expect_err("request should fail");""") | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package software.amazon.smithy.rustsdk | ||
|
||
import org.junit.jupiter.api.Test | ||
import software.amazon.smithy.rust.codegen.core.testutil.asSmithyModel | ||
|
||
class SmokeTestsDecoratorTest { | ||
companion object { | ||
// Can't use the dollar sign in a multiline string with doing it like this. | ||
private const val PREFIX = "\$version: \"2\"" | ||
val model = | ||
""" | ||
$PREFIX | ||
namespace test | ||
|
||
use aws.api#service | ||
use smithy.test#smokeTests | ||
use aws.auth#sigv4 | ||
use aws.protocols#restJson1 | ||
use smithy.rules#endpointRuleSet | ||
|
||
@service(sdkId: "dontcare") | ||
@restJson1 | ||
@sigv4(name: "dontcare") | ||
@auth([sigv4]) | ||
@endpointRuleSet({ | ||
"version": "1.0", | ||
"rules": [{ "type": "endpoint", "conditions": [], "endpoint": { "url": "https://example.com" } }], | ||
"parameters": { | ||
"Region": { "required": false, "type": "String", "builtIn": "AWS::Region" }, | ||
} | ||
}) | ||
service TestService { | ||
version: "2023-01-01", | ||
operations: [SomeOperation] | ||
} | ||
|
||
@smokeTests([ | ||
{ | ||
id: "SomeOperationSuccess", | ||
params: {} | ||
vendorParams: { | ||
region: "us-west-2" | ||
} | ||
expect: { success: {} } | ||
} | ||
{ | ||
id: "SomeOperationFailure", | ||
params: {} | ||
vendorParams: { | ||
region: "us-west-2" | ||
} | ||
expect: { failure: {} } | ||
} | ||
{ | ||
id: "SomeOperationFailureExplicitShape", | ||
params: {} | ||
vendorParams: { | ||
region: "us-west-2" | ||
} | ||
expect: { | ||
failure: { errorId: FooException } | ||
} | ||
} | ||
]) | ||
@http(uri: "/SomeOperation", method: "POST") | ||
@optionalAuth | ||
operation SomeOperation { | ||
input: SomeInput, | ||
output: SomeOutput, | ||
errors: [FooException] | ||
} | ||
|
||
@input | ||
structure SomeInput {} | ||
|
||
@output | ||
structure SomeOutput {} | ||
|
||
@error("server") | ||
structure FooException { } | ||
""".asSmithyModel() | ||
} | ||
|
||
@Test | ||
fun smokeTestSdkCodegen() { | ||
awsSdkIntegrationTest(model) { _, _ -> | ||
// It should compile. We can't run the tests | ||
// because they don't target a real service. | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,14 @@ | |
set -eux | ||
cd aws-sdk | ||
|
||
# Invoking `cargo test` at the root directory implicitly checks for the validity | ||
# of the top-level `Cargo.toml` | ||
cargo test --all-features | ||
# Check if the $ENABLE_SMOKETESTS environment variable is set | ||
if [ -n "$ENABLE_SMOKETESTS" ]; then | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will we ever want to run these smoketests in our CI check? My understanding was that we wanted to keep all network calls out of that portion of our testing? This came up when I contributed the wasm crate because I initially put the tests in CI and was asked to move them to the Canary. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ref: #3409 (comment) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We run these checks in Catapult too IIRC. I wanted to use the same script in both cases, but differ in whether smoketests are enabled. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Related to an env var
we need to make sure that the script runs fine in our relase pipeline (and compiling smoke tests) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll remove the script change for now so that we can get this merged. We can integrate it in a separate PR |
||
# Invoking `cargo test` at the root directory implicitly checks for the validity | ||
# of the top-level `Cargo.toml` | ||
RUSTFLAGS="--cfg smoketests" cargo test --all-features | ||
else | ||
cargo test --all-features | ||
fi | ||
|
||
for test_dir in tests/*; do | ||
if [ -f "${test_dir}/Cargo.toml" ]; then | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: Why can't we support sigv4a tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't have a way to configure region sets right now unless you manually sign a request.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Additionally, I can't find any service using it: https://github.com/search?q=repo%3Aaws%2Faws-models%20sigv4aRegionSet&type=code