Skip to content

Commit

Permalink
Skipping bucket ops tests
Browse files Browse the repository at this point in the history
Signed-off-by: Priyanshu Pandey <[email protected]>
  • Loading branch information
pp511 committed Jun 4, 2024
1 parent 8e41daf commit 5bfc021
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion api/server/sdk/bucket_ops_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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
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,
Expand All @@ -28,6 +28,7 @@ import (
)

func TestBucketCreateSuccess(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down Expand Up @@ -64,6 +65,7 @@ func TestBucketCreateSuccess(t *testing.T) {
}

func TestBucketCreateSuccessRegionMissingPureFB(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down Expand Up @@ -104,6 +106,7 @@ func TestBucketCreateSuccessRegionMissingPureFB(t *testing.T) {
}

func TestBucketCreateRegionMissing(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand All @@ -129,6 +132,7 @@ func TestBucketCreateRegionMissing(t *testing.T) {
}

func TestBucketCreateFailure(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down Expand Up @@ -160,6 +164,7 @@ func TestBucketCreateFailure(t *testing.T) {
}

func TestBucketDeleteSuccessRegionMissingPureFB(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down Expand Up @@ -195,6 +200,7 @@ func TestBucketDeleteSuccessRegionMissingPureFB(t *testing.T) {
}

func TestBucketDeleteSuccess(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down Expand Up @@ -225,6 +231,7 @@ func TestBucketDeleteSuccess(t *testing.T) {
}

func TestBucketDeleteFailure(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down Expand Up @@ -254,6 +261,7 @@ func TestBucketDeleteFailure(t *testing.T) {
}

func TestBucketDeleteFailureRegionMissing(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand All @@ -280,6 +288,7 @@ func TestBucketDeleteFailureRegionMissing(t *testing.T) {
}

func TestBucketGrantAccess(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down Expand Up @@ -326,6 +335,7 @@ func TestBucketGrantAccess(t *testing.T) {
}

func TestBucketRevokeAccess(t *testing.T) {
t.Skip()
// Create server and client connection
s := newTestServer(t)
defer s.Stop()
Expand Down

0 comments on commit 5bfc021

Please sign in to comment.