Skip to content

Commit 5daf945

Browse files
committed
Ignore AwsHttpSignerTestBase
1 parent 49663c0 commit 5daf945

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

runtime/auth/http-auth-aws/common/test/aws/smithy/kotlin/runtime/http/auth/AwsHttpSignerTestBase.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55
package aws.smithy.kotlin.runtime.http.auth
66

7+
import aws.smithy.kotlin.runtime.IgnoreNative
78
import aws.smithy.kotlin.runtime.auth.awscredentials.Credentials
89
import aws.smithy.kotlin.runtime.auth.awscredentials.CredentialsProvider
910
import 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

Comments
 (0)