Skip to content

Commit

Permalink
getBucketLocation, RestoreObject 테스트 케이스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pspace-jwkwak committed Nov 23, 2022
1 parent cc91fc2 commit cfcdd07
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions java/src/main/java/org/example/test/GetObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ public void test_range_object_many() {

@Test
@Tag("location")
// 버킷의 location 정보 조회
public void test_get_bucket_location()
{
var BucketName = GetNewBucket();
Expand All @@ -337,6 +338,7 @@ public void test_get_bucket_location()

@Test
@Tag("Restore")
//오브젝트 복구 명령이 성공하는지 확인
public void test_restore_object() {
var BucketName = GetNewBucket();
var Client = GetClient();
Expand Down
16 changes: 16 additions & 0 deletions java/src/test/java/org/example/s3tests/GetObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,20 @@ public void test_get_object_many() {
public void test_range_object_many() {
Test.test_range_object_many();
}

@Test
@Tag("KSAN")
@Tag("location")
// 버킷의 location 정보 조회
public void test_get_bucket_location() {
Test.test_get_bucket_location();
}

@Test
@Tag("KSAN")
@Tag("Restore")
//오브젝트 복구 명령이 성공하는지 확인
public void test_restore_object() {
Test.test_restore_object();
}
}

0 comments on commit cfcdd07

Please sign in to comment.