2025-03-10 18:46:12 +01:00
|
|
|
// MinIO Rust Library for Amazon S3 Compatible Cloud Storage
|
|
|
|
|
// Copyright 2025 MinIO, Inc.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
2025-06-23 13:38:40 +02:00
|
|
|
use async_std::io::ReadExt;
|
2025-03-22 14:30:37 +04:00
|
|
|
use hex::ToHex;
|
2025-04-23 19:18:18 +02:00
|
|
|
use minio::s3::builders::ObjectContent;
|
2025-06-18 18:55:53 +02:00
|
|
|
use minio::s3::response::a_response_traits::{HasBucket, HasObject};
|
2025-04-23 19:18:18 +02:00
|
|
|
use minio::s3::response::{GetObjectResponse, PutObjectContentResponse};
|
2025-03-10 18:46:12 +01:00
|
|
|
use minio::s3::types::S3Api;
|
2025-03-29 23:26:11 +01:00
|
|
|
use minio_common::rand_reader::RandReader;
|
|
|
|
|
use minio_common::test_context::TestContext;
|
|
|
|
|
use minio_common::utils::rand_object_name;
|
2025-03-22 14:30:37 +04:00
|
|
|
#[cfg(feature = "ring")]
|
|
|
|
|
use ring::digest::{Context, SHA256};
|
|
|
|
|
#[cfg(not(feature = "ring"))]
|
2025-03-10 18:46:12 +01:00
|
|
|
use sha2::{Digest, Sha256};
|
2025-03-14 13:39:24 -07:00
|
|
|
use std::path::PathBuf;
|
2025-03-10 18:46:12 +01:00
|
|
|
|
2025-06-23 13:38:40 +02:00
|
|
|
async fn get_hash(filename: &String) -> String {
|
2025-03-22 14:30:37 +04:00
|
|
|
#[cfg(feature = "ring")]
|
|
|
|
|
{
|
|
|
|
|
let mut context = Context::new(&SHA256);
|
2025-06-23 13:38:40 +02:00
|
|
|
let mut file = async_std::fs::File::open(filename).await.unwrap();
|
2025-03-22 14:30:37 +04:00
|
|
|
let mut buf = Vec::new();
|
2025-06-23 13:38:40 +02:00
|
|
|
file.read_to_end(&mut buf).await.unwrap();
|
2025-03-22 14:30:37 +04:00
|
|
|
context.update(&buf);
|
|
|
|
|
context.finish().encode_hex()
|
|
|
|
|
}
|
|
|
|
|
#[cfg(not(feature = "ring"))]
|
|
|
|
|
{
|
|
|
|
|
let mut hasher = Sha256::new();
|
2025-06-23 13:38:40 +02:00
|
|
|
let mut file = async_std::fs::File::open(filename).await.unwrap();
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
|
file.read_to_end(&mut buf).await.unwrap();
|
|
|
|
|
hasher.update(&buf);
|
2025-03-22 14:30:37 +04:00
|
|
|
hasher.finalize().encode_hex()
|
|
|
|
|
}
|
2025-03-10 18:46:12 +01:00
|
|
|
}
|
|
|
|
|
|
2025-06-23 13:38:40 +02:00
|
|
|
async fn upload_download_object(size: u64, ctx: TestContext, bucket_name: String) {
|
2025-04-23 19:18:18 +02:00
|
|
|
let object_name: String = rand_object_name();
|
2025-06-23 13:38:40 +02:00
|
|
|
let mut file = async_std::fs::File::create(&object_name).await.unwrap();
|
|
|
|
|
|
|
|
|
|
async_std::io::copy(&mut RandReader::new(size), &mut file)
|
|
|
|
|
.await
|
|
|
|
|
.unwrap();
|
2025-03-10 18:46:12 +01:00
|
|
|
|
2025-06-23 13:38:40 +02:00
|
|
|
file.sync_all().await.unwrap();
|
2025-03-14 13:39:24 -07:00
|
|
|
|
2025-04-23 19:18:18 +02:00
|
|
|
let obj: ObjectContent = PathBuf::from(&object_name).as_path().into();
|
|
|
|
|
|
2025-03-21 17:25:06 +01:00
|
|
|
let resp: PutObjectContentResponse = ctx
|
|
|
|
|
.client
|
2025-04-23 19:18:18 +02:00
|
|
|
.put_object_content(&bucket_name, &object_name, obj)
|
2025-03-14 13:39:24 -07:00
|
|
|
.send()
|
2025-03-10 18:46:12 +01:00
|
|
|
.await
|
|
|
|
|
.unwrap();
|
2025-06-18 18:55:53 +02:00
|
|
|
assert_eq!(resp.bucket(), bucket_name);
|
|
|
|
|
assert_eq!(resp.object(), object_name);
|
|
|
|
|
assert_eq!(resp.object_size(), size);
|
2025-03-10 18:46:12 +01:00
|
|
|
|
2025-04-23 19:18:18 +02:00
|
|
|
let filename: String = rand_object_name();
|
|
|
|
|
let resp: GetObjectResponse = ctx
|
2025-03-14 13:39:24 -07:00
|
|
|
.client
|
|
|
|
|
.get_object(&bucket_name, &object_name)
|
|
|
|
|
.send()
|
|
|
|
|
.await
|
|
|
|
|
.unwrap();
|
2025-06-18 18:55:53 +02:00
|
|
|
assert_eq!(resp.bucket(), bucket_name);
|
|
|
|
|
assert_eq!(resp.object(), object_name);
|
2025-04-23 19:18:18 +02:00
|
|
|
|
|
|
|
|
// save the object to a file
|
2025-06-18 18:55:53 +02:00
|
|
|
resp.content()
|
|
|
|
|
.unwrap()
|
2025-03-14 13:39:24 -07:00
|
|
|
.to_file(PathBuf::from(&filename).as_path())
|
2025-03-10 18:46:12 +01:00
|
|
|
.await
|
|
|
|
|
.unwrap();
|
2025-06-23 13:38:40 +02:00
|
|
|
assert_eq!(get_hash(&object_name).await, get_hash(&filename).await);
|
2025-03-10 18:46:12 +01:00
|
|
|
|
2025-06-23 13:38:40 +02:00
|
|
|
async_std::fs::remove_file(&object_name).await.unwrap();
|
|
|
|
|
async_std::fs::remove_file(&filename).await.unwrap();
|
2025-04-23 19:18:18 +02:00
|
|
|
}
|
2025-03-10 18:46:12 +01:00
|
|
|
|
2025-06-23 13:38:40 +02:00
|
|
|
#[minio_macros::test]
|
|
|
|
|
async fn upload_download_object_1(ctx: TestContext, bucket_name: String) {
|
|
|
|
|
upload_download_object(16, ctx, bucket_name).await;
|
2025-04-23 19:18:18 +02:00
|
|
|
}
|
2025-03-10 18:46:12 +01:00
|
|
|
|
2025-06-23 13:38:40 +02:00
|
|
|
#[minio_macros::test]
|
|
|
|
|
async fn upload_download_object_2(ctx: TestContext, bucket_name: String) {
|
|
|
|
|
upload_download_object(16 + 5 * 1024 * 1024, ctx, bucket_name).await;
|
2025-03-10 18:46:12 +01:00
|
|
|
}
|