From b128d127c25e42f4908a096cad6829c6f60962b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 22 Dec 2023 13:13:46 +0200 Subject: [PATCH] aws: Disable putobjectsink tests for now See https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/472 Part-of: --- net/aws/tests/s3.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs index dfe27376..8c75638d 100644 --- a/net/aws/tests/s3.rs +++ b/net/aws/tests/s3.rs @@ -173,48 +173,58 @@ mod tests { delete_object(region.clone(), &bucket, &key).await; } + // See https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/472 + #[ignore] #[tokio::test] async fn test_s3_multipart_simple() { do_s3_multipart_test("s3-test").await; } + #[ignore] #[tokio::test] async fn test_s3_multipart_whitespace() { do_s3_multipart_test("s3 test").await; } + #[ignore] #[tokio::test] async fn test_s3_multipart_unicode() { do_s3_multipart_test("s3 🧪 😱").await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_simple() { do_s3_putobject_test("s3-put-object-test", None, None, None, true).await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_whitespace() { do_s3_putobject_test("s3 put object test", None, None, None, true).await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_unicode() { do_s3_putobject_test("s3 put object 🧪 😱", None, None, None, true).await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_flush_buffers() { // Awkward threshold as we push 5 buffers do_s3_putobject_test("s3-put-object-test fbuf", Some(2), None, None, true).await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_flush_bytes() { // Awkward threshold as we push 14 bytes per buffer do_s3_putobject_test("s3-put-object-test fbytes", None, Some(30), None, true).await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_flush_time() { do_s3_putobject_test( @@ -228,6 +238,7 @@ mod tests { .await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_on_eos() { // Disable all flush thresholds, so only EOS causes a flush @@ -241,6 +252,7 @@ mod tests { .await; } + #[ignore] #[tokio::test] async fn test_s3_put_object_without_eos() { // Disable all flush thresholds, skip EOS, and cause a flush on error