File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
tests/codegen/smoke-tests/src/test/kotlin Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ import org.gradle.testkit.runner.GradleRunner
44import java.io.File
55import kotlin.test.*
66
7+ // FIXME: Enable smoke test E2E tests
78class SmokeTestE2ETest {
9+ @Ignore
810 @Test
911 fun successService () {
1012 val smokeTestRunnerOutput = runSmokeTests(" successService" )
@@ -13,13 +15,15 @@ class SmokeTestE2ETest {
1315 assertContains(smokeTestRunnerOutput, " ok SuccessService SuccessTestWithTags - no error expected from service" )
1416 }
1517
18+ @Ignore
1619 @Test
1720 fun failureService () {
1821 val smokeTestRunnerOutput = runSmokeTests(" failureService" )
1922
2023 assertContains(smokeTestRunnerOutput, " ok FailureService FailuresTest - error expected from service" )
2124 }
2225
26+ @Ignore
2327 @Test
2428 fun exceptionService () {
2529 val smokeTestRunnerOutput = runSmokeTests(" exceptionService" , expectingFailure = true )
@@ -30,6 +34,7 @@ class SmokeTestE2ETest {
3034 assertContains(smokeTestRunnerOutput, " #\t at aws.smithy.kotlin.runtime.http.interceptors.InterceptorExecutor.readBeforeDeserialization(InterceptorExecutor.kt:252)" )
3135 }
3236
37+ @Ignore
3338 @Test
3439 fun successServiceSkipTags () {
3540 val envVars = mapOf (AWS_SKIP_TAGS to " success" )
@@ -39,6 +44,7 @@ class SmokeTestE2ETest {
3944 assertContains(smokeTestRunnerOutput, " ok SuccessService SuccessTestWithTags - no error expected from service # skip" )
4045 }
4146
47+ @Ignore
4248 @Test
4349 fun successServiceServiceFilter () {
4450 val envVars = mapOf (AWS_SERVICE_FILTER to " Failure" ) // Only run tests for services with this SDK ID
You can’t perform that action at this time.
0 commit comments