Skip to content

Commit

Permalink
chore(storage): temporarily skip grpc tests (#4964)
Browse files Browse the repository at this point in the history
First step of #4963.
  • Loading branch information
noahdietz committed Oct 7, 2021
1 parent dac26b1 commit e51aff9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion storage/integration_test.go
Expand Up @@ -776,6 +776,7 @@ func TestIntegration_ObjectsRangeReader(t *testing.T) {
}

func TestIntegration_ObjectReadGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to upload test data and a gRPC client to test with.
Expand Down Expand Up @@ -836,6 +837,7 @@ func TestIntegration_ObjectReadGRPC(t *testing.T) {
}

func TestIntegration_ObjectReadChunksGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to upload test data and a gRPC client to test with.
Expand Down Expand Up @@ -900,6 +902,7 @@ func TestIntegration_ObjectReadChunksGRPC(t *testing.T) {
}

func TestIntegration_ObjectReadRelativeToEndGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to upload test data and a gRPC client to test with.
Expand Down Expand Up @@ -963,6 +966,7 @@ func TestIntegration_ObjectReadRelativeToEndGRPC(t *testing.T) {
}

func TestIntegration_ObjectReadPartialContentGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to upload test data and a gRPC client to test with.
Expand Down Expand Up @@ -1016,6 +1020,7 @@ func TestIntegration_ObjectReadPartialContentGRPC(t *testing.T) {
}

func TestIntegration_ConditionalDownloadGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to upload test data and a gRPC client to test with.
Expand Down Expand Up @@ -1052,6 +1057,7 @@ func TestIntegration_ConditionalDownloadGRPC(t *testing.T) {
}

func TestIntegration_SimpleWriteGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to read test data and a gRPC client to test write
Expand Down Expand Up @@ -1110,6 +1116,7 @@ func TestIntegration_SimpleWriteGRPC(t *testing.T) {
}

func TestIntegration_CancelWriteGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to verify test and a gRPC client to test writing.
Expand Down Expand Up @@ -1159,6 +1166,7 @@ func TestIntegration_CancelWriteGRPC(t *testing.T) {
}

func TestIntegration_MultiMessageWriteGRPC(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to read test data and a gRPC client to test write
Expand Down Expand Up @@ -1219,7 +1227,7 @@ func TestIntegration_MultiMessageWriteGRPC(t *testing.T) {
}

func TestIntegration_MultiChunkWriteGRPC(t *testing.T) {
// t.Skip()
t.Skip("https://github.com/googleapis/google-cloud-go/issues/4963")
ctx := context.Background()

// Create an HTTP client to read test data and a gRPC client to test write
Expand Down

0 comments on commit e51aff9

Please sign in to comment.