44 */
55package aws.smithy.kotlin.runtime.http.auth
66
7+ import aws.smithy.kotlin.runtime.IgnoreNative
78import aws.smithy.kotlin.runtime.auth.awscredentials.Credentials
89import aws.smithy.kotlin.runtime.auth.awscredentials.CredentialsProvider
910import aws.smithy.kotlin.runtime.auth.awssigning.AwsSigner
@@ -133,6 +134,7 @@ public abstract class AwsHttpSignerTestBase(
133134 assertEquals(expectedSig, signed.headers[" Authorization" ])
134135 }
135136
137+ @IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation.
136138 @Test
137139 public fun testSignReplayableStreamingRequest (): TestResult = runTest {
138140 val op = buildOperation(streaming = true )
@@ -146,6 +148,7 @@ public abstract class AwsHttpSignerTestBase(
146148 assertEquals(expectedSig, signed.headers[" Authorization" ])
147149 }
148150
151+ @IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation.
149152 @Test
150153 public fun testSignAwsChunkedStreamNonReplayable (): TestResult = runTest {
151154 val op = buildOperation(streaming = true , replayable = false , requestBody = " a" .repeat(AWS_CHUNKED_THRESHOLD + 1 ))
@@ -159,6 +162,7 @@ public abstract class AwsHttpSignerTestBase(
159162 assertEquals(expectedSig, signed.headers[" Authorization" ])
160163 }
161164
165+ @IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation.
162166 @Test
163167 public fun testSignAwsChunkedStreamReplayable (): TestResult = runTest {
164168 val op = buildOperation(streaming = true , replayable = true , requestBody = " a" .repeat(AWS_CHUNKED_THRESHOLD + 1 ))
@@ -172,6 +176,7 @@ public abstract class AwsHttpSignerTestBase(
172176 assertEquals(expectedSig, signed.headers[" Authorization" ])
173177 }
174178
179+ @IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation.
175180 @Test
176181 public fun testSignOneShotStream (): TestResult = runTest {
177182 val op = buildOperation(streaming = true , replayable = false )
0 commit comments