Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <arun@asymptotic.io>2023-12-22 23:42:10 +0300
committerArun Raghavan <arun@asymptotic.io>2024-01-11 23:38:36 +0300
commit8b18ca15b53724c21ddb59a3ff2f8ac36db29c37 (patch)
tree87180680fdd5e651da925f05d22f528e8ac8de85
parent06213714c5db66e456592bbf7b5d18a9e7b84b51 (diff)
Revert "aws: Disable putobjectsink tests for now"
This reverts commit b128d127c25e42f4908a096cad6829c6f60962b9. Fixes: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/472 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1416>
-rw-r--r--net/aws/tests/s3.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/net/aws/tests/s3.rs b/net/aws/tests/s3.rs
index 8c75638d..dfe27376 100644
--- a/net/aws/tests/s3.rs
+++ b/net/aws/tests/s3.rs
@@ -173,58 +173,48 @@ 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(
@@ -238,7 +228,6 @@ mod tests {
.await;
}
- #[ignore]
#[tokio::test]
async fn test_s3_put_object_on_eos() {
// Disable all flush thresholds, so only EOS causes a flush
@@ -252,7 +241,6 @@ 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